-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "roover",
"version": "0.3.1",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"author": "leonardomso",
"module": "dist/roover.esm.js",
"size-limit": [
{
"path": "dist/roover.cjs.production.min.js",
"limit": "20 KB"
},
{
"path": "dist/roover.esm.js",
"limit": "20 KB"
}
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"test:watch": "tsdx test --watchAll",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"example:start": "cd ./example/ && yarn start",
"docs:dev": "cd ./docs/ && yarn dev",
"docs:start": "cd ./docs/ && yarn start",
"docs:build": "cd ./docs/ && yarn build"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.8",
"@types/raf": "^3.4.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@xstate/react": "^1.6.3",
"babel-jest": "^29.6.4",
"babel-loader": "^8.2.5",
"husky": "^7.0.4",
"raf": "^3.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^18.2.0",
"react-tracked": "^1.7.11",
"size-limit": "^7.0.8",
"ts-loader": "^9.5.1",
"tsdx": "^0.14.1",
"tslib": "^2.6.1",
"typescript": "^5.2.2",
"xstate": "^4.38.2"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}