-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.23 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
{
"name": "hokulea",
"private": true,
"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": {
"@gossi/config-eslint": "0.13.0",
"@gossi/config-prettier": "0.9.1",
"eslint": "8.57.1",
"release-plan": "0.10.0",
"turbo": "^2.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 20.*"
}
}