-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@bem-react/core",
"version": "6.1.0",
"description": "BEM React Core",
"homepage": "https://github.com/bem/bem-react/tree/master/packages/core",
"repository": "https://github.com/bem/bem-react",
"keywords": ["bem", "modifier", "withBemMod", "core"],
"publishConfig": {
"access": "public"
},
"license": "MPL-2.0",
"scripts": {
"prepublishOnly": "npm run build",
"build": "node ../../scripts/rollup/build.js",
"unit": "../../node_modules/.bin/jest --config ../../.config/jest/jest.config.js"
},
"dependencies": {
"@bem-react/classname": "1.8.0",
"@bem-react/classnames": "1.5.0"
},
"peerDependencies": {
"react": "^19.0.0"
},
"files": ["build", "index.cjs", "core.d.ts"],
"main": "./index.cjs",
"module": "./build/core.production.min.mjs",
"types": "./core.d.ts",
"exports": {
".": {
"types": "./core.d.ts",
"development": {
"import": "./build/core.development.mjs",
"require": "./build/core.development.cjs"
},
"production": {
"import": "./build/core.production.min.mjs",
"require": "./build/core.production.min.cjs"
},
"import": "./build/core.production.min.mjs",
"require": "./index.cjs"
}
}
}