-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "wirescript",
"version": "0.0.1",
"private": true,
"description": "Monorepo for WireScript - a Lisp-like DSL for wireframes",
"license": "Apache-2.0",
"author": "Ruiyang Ke",
"repository": {
"type": "git",
"url": "git+https://github.com/ruiyangke/wirescript.git"
},
"type": "module",
"scripts": {
"dev": "pnpm --filter @wirescript/viewer dev",
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "pnpm -r typecheck",
"version:patch": "pnpm -r exec -- npm version patch --no-git-tag-version",
"version:minor": "pnpm -r exec -- npm version minor --no-git-tag-version",
"version:major": "pnpm -r exec -- npm version major --no-git-tag-version",
"publish:public": "pnpm -r publish --access public --no-git-checks",
"publish:dry": "pnpm -r publish --access public --dry-run",
"package:vscode": "pnpm --filter ./apps/vscode-extension package",
"package:chrome": "pnpm --filter @wirescript/chrome-extension package"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
}
}