-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1015 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1015 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
{
"name": "@ailly/ailly",
"scripts": {
"clean": "rm -rf **/lib **/out **/.next **/tsconfig.tsbuildinfo **/*.vsix **/node_modules node_modules",
"webdev": "npm run link -w web && npm run -w web dev",
"check": "npm run check -w core && npm run check -w cli && npm run check -w extension && npm run check -w web",
"build": "npm run build -w core && npm run build -w cli && npm run build -w extension",
"fix": "npm run fix -w core && npm run fix -w cli && npm run fix -w extension && npm run fix -w web",
"pretest": "npm run build",
"test:cli": "npm run ci -w core && npm run ci -w cli && ./integ/integ-noop.sh",
"test": "npm run test:cli && npm run ci -w web && npm run ci -w extension",
"prepackage": "npm run build",
"package": "npm run --w extension package"
},
"workspaces": [
"core",
"extension",
"web",
"cli"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"vitest": "^3.1.3"
},
"overrides": {
"whatwg-url": "^14.0.0"
}
}