-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@nekobird/styled-chemistry",
"version": "0.0.2",
"private": false,
"description": "A theming system for css-in-js.",
"keywords": [
"nekobird"
],
"homepage": "https://github.com/nekobird/style-system#readme",
"bugs": {
"url": "https://github.com/nekobird/style-system/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nekobird/style-system.git"
},
"license": "MIT",
"author": "Andrew Prasetya",
"sideEffects": false,
"main": "build/commonjs/styled-chemistry.js",
"module": "build/esm/styled-chemistry.js",
"jsnext:main": "build/esm/styled-chemistry.js",
"types": "build/types/lib/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc --emitDeclarationOnly --outDir build/types/; rollup -c rollup.config.js",
"clean": "rimraf build",
"coverage": "jest --coverage",
"prepublishOnly": "npm run build",
"start": "parcel ./example/index.html",
"test": "jest --watch"
},
"dependencies": {
"polished": "^3.6.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"jest": "^26.4.2",
"parcel-bundler": "^1.12.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"sass": "^1.26.11",
"ts-jest": "^26.4.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.2.0"
},
"publishConfig": {
"access": "public"
}
}