-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 981 Bytes
/
package.json
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
{
"name": "@beyond-ui/theme",
"version": "1.3.0",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"repository": "git://github.com/renli-tech/Beyond.git",
"author": "opeabidemi <[email protected]>",
"license": "MIT",
"files": [
"src",
"dist"
],
"scripts": {
"clean": "rimraf dist",
"watch": "yarn build:dev",
"test": "jest",
"build": "run-s clean build:prod",
"build:dev": "cross-env NODE_ENV=development rollup -cw",
"build:prod": "cross-env NODE_ENV=production rollup -c"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@beyond-ui/utils": "^0.2.0"
}
}