-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "stalo",
"version": "0.7.10",
"type": "module",
"scripts": {
"start": "npm run build && cd examples && vite --open",
"test": "vitest run --coverage",
"build": "tsc -b --clean && tsc -b",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"version": "node src/sync-version.js"
},
"publishConfig": {
"provenance": true
},
"workspaces": [
"devtools-ui",
"chrome-extension",
"examples"
],
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./lib/immer": "./lib/immer.js",
"./lib/persistent": "./lib/persistent.js",
"./lib/utils": "./lib/utils.js",
"./lib/devtools": "./lib/devtools.js"
},
"files": [
"./lib"
],
"peerDependencies": {
"immer": ">=9.0.6",
"react": ">=18.0.0"
},
"repository": {
"url": "https://github.com/ysmood/stalo"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/chrome": "^0.0.278",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "^2.1.2",
"@vitest/coverage-istanbul": "^2.1.2",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"react-dom": "^18.3.1",
"typescript": "^5.5.2",
"vite": "^5.4.8",
"vitest": "^2.1.2",
"playwright": "^1.47.2"
}
}