-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.71 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": "tonami",
"version": "0.4.4",
"source": "src/tonami.ts",
"main": "./dist/tonami.js",
"module": "./dist/tonami.module.js",
"unpkg": "./dist/tonami.umd.js",
"types": "./dist/tonami.d.ts",
"author": "Rob <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tone-row/tonami"
},
"files": [
"dist"
],
"description": "Minimal CSS-in-JS library that promotes CSS best-practices and strongly-typed design systems.",
"keywords": [
"react",
"css",
"css-in-js",
"goober",
"styled",
"emotion",
"styled-components",
"styling"
],
"scripts": {
"bundle": "microbundle --jsx React.createElement",
"dev": "yarn run bundle watch --no-compress",
"build": "yarn clean && yarn bundle",
"clean": "rimraf dist",
"test": "yarn jest",
"semantic-release": "semantic-release",
"benchmark": "node scripts/benchmark.js"
},
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@types/react": "^17.0.7",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/parser": "^4.25.0",
"benchmark": "^2.1.4",
"jest": "<27",
"microbundle": "^0.13.3",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17"
},
"dependencies": {
"csstype": "^3.0.8"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/tone-row"
}
}