-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1016 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1016 Bytes
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
{
"name": "timeless-monorepo",
"private": true,
"scripts": {
"build": "node scripts/build.js --prod",
"dev": "node scripts/dev.js",
"build:whole": "pnpm --filter \"./packages/*\" --filter \"!./packages/solidjs\" --filter \"!./packages/vue\" -r run build -- --whole",
"build:lite": "pnpm --filter \"./packages/vanillalite\" -r run build",
"build:dev": "pnpm -C packages/dev run generate",
"test": "pnpm -r run test",
"clean": "rm -rf node_modules packages/*/node_modules apps/*/node_modules"
},
"devDependencies": {
"@types/node": "^25.0.9",
"@vitejs/plugin-vue": "^5.0.0",
"eslint": "^9.1.1",
"prettier": "^3.2.5",
"terser": "^5.31.0",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"vite": "^8.0.0-beta.16",
"vite-plugin-dts": "^4.0.0",
"vite-plugin-solid": "^2.10.0",
"vitest": "^4.1.0"
},
"workspaces": [
"packages/*",
"apps/*"
],
"pnpm": {
"overrides": {
"@microsoft/api-extractor": "7.58.1"
}
}
}