-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 KB
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
{
"name": "suspense-repo",
"private": true,
"scripts": {
"clear": "npm run clear:builds & npm run clear:node_modules",
"clear:builds": "rm -rf ./packages/*/dist",
"clear:node_modules": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"dev": "pnpm run /^dev:.*/",
"dev:core": "cd packages/suspense && pnpm watch",
"dev:website": "cd packages/suspense-website && pnpm watch",
"docs": "cd packages/suspense-website && pnpm build",
"prerelease": "preconstruct build",
"prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
"test": "pnpm -r run test",
"typescript": "tsc --noEmit",
"typescript:watch": "tsc --noEmit --watch"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.5",
"@preconstruct/cli": "^2.8.12",
"@types/node": "^22.15.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@vitejs/plugin-react-swc": "^3.9.0",
"path-browserify": "^1.0.0",
"prettier": "latest",
"process": "^0.11.10",
"typescript": "^5.0.4",
"vite": "^6.3.4"
},
"version": "0.0.0",
"workspaces": [
"packages/array-sorting-utilities",
"packages/point-utilities",
"packages/interval-utilities",
"packages/suspense",
"packages/suspense-website"
],
"preconstruct": {
"packages": [
"packages/!(suspense-website)"
],
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"distInRoot": true,
"importsConditions": true,
"typeModule": true
}
}
}