-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.18 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.18 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
{
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hokulea/aria-voyager.git"
},
"scripts": {
"build": "turbo run build",
"clean": "pnpm run '/^clean:.*/'",
"clean:declarations": "find . -not \\( -path './node_modules' -type d -prune \\) -name 'declarations' -type d -exec rm -rf '{}' +",
"clean:dist": "find . -not \\( -path './node_modules' -type d -prune \\) -name 'dist' -type d -exec rm -rf '{}' +",
"clean:node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:turbo": "find . -name '.turbo' -type d -prune -exec rm -rf '{}' +",
"lint:css": "pnpm run -r --parallel --aggregate-output lint:css",
"lint:hbs": "pnpm run -r --parallel --aggregate-output lint:hbs",
"lint:js": "pnpm run -r --parallel --aggregate-output lint:js",
"lint:types": "pnpm run -r --parallel --aggregate-output lint:types",
"start": "turbo run start --parallel"
},
"devDependencies": {
"playwright": "catalog:test",
"release-plan": "0.17.4",
"turbo": "^2.8.14"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": "^20.11.0 || >=22"
}
}