-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.24 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
{
"private": true,
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "vite",
"build": "node scripts/build.mjs",
"build:all": "node scripts/build.mjs --plugin all",
"build:debug-tests": "GRAYJAY_DEBUG_TESTS=1 node scripts/build.mjs",
"grayjay:dev-api": "node scripts/grayjay-dev-api.mjs",
"grayjay:android-smoke": "node scripts/android-remote-smoke.mjs",
"scaffold": "node scripts/scaffold-plugin.mjs",
"validate": "node scripts/validate.mjs",
"test": "vitest run tests/unit",
"test:watch": "vitest tests/unit",
"test:live": "node scripts/live-test.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "pnpm run format:check && pnpm run lint && pnpm run build:all && pnpm run validate && pnpm run test",
"bump": "zx scripts/bump-and-sign.mjs bump",
"sign": "zx scripts/bump-and-sign.mjs sign",
"sign-bump": "zx scripts/bump-and-sign.mjs sign-bump"
},
"devDependencies": {
"@clack/prompts": "1.4.0",
"@eslint/js": "10.0.1",
"eslint": "10.4.0",
"globals": "17.6.0",
"prettier": "3.8.3",
"vite": "^8.0.16",
"vitest": "^4.1.7",
"zx": "8.8.5"
}
}