-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.09 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
{
"private": true,
"name": "gardenjs",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"echo": "yarn workspaces foreach --include \"packages/*\" run echo",
"build": "yarn workspaces foreach -Atp --include \"packages/*\" run build",
"start:docs": "yarn workspace docs start",
"test": "vitest run",
"dev": "yarn workspaces foreach -Api -j unlimited --include \"packages/*\" run dev ",
"patch:affected": "yarn workspaces foreach -p --topological --include \"packages/*\" --since=$0 run patch",
"publish:affected": "yarn workspaces foreach -p --include \"packages/*\" --since=main npm publish"
},
"workspaces": [
"packages/*",
"docs"
],
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/chrome": "^0.0.268",
"@types/node": "^20.11.30",
"eslint": "9.x",
"globals": "^15.8.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"typescript-eslint": "^7.15.0",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]"
}