-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "react-create-keyframe",
"description": "Helper to create and render keyframes on-demand in React",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE",
"README.md",
"dist/**"
],
"browserslist": [
"IE >= 11",
"Firefox >= 60",
"Safari >= 11.1",
"Chrome >= 66",
"ChromeAndroid >= 66",
"iOS >= 11.3",
"Edge >= 15"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc -b",
"dev": "pnpm build -w",
"release": "pnpm clean && pnpm check && npm publish",
"test": "ava",
"check": "pnpm build && pnpm test"
},
"peerDependencies": {
"react": ">=16.8"
},
"dependencies": {
"css-in-js-utils": "^3.1.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"ava": "^6.1.3",
"prettier": "^3.3.0",
"react": "^18.3.1",
"rimraf": "^3.0.0",
"typescript": "^5.4.5"
}
}