-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.89 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.89 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
45
46
47
{
"name": "userscripts",
"private": true,
"version": "1.2.727",
"type": "module",
"scripts": {
"dev:playground": "node tooling/maybe-codegen.js && cross-env VITE_SCRIPT=playground vite",
"dev:power-reader": "node tooling/maybe-codegen.js && cross-env VITE_SCRIPT=power-reader vite",
"build": "npm run build:power-reader",
"build:playground": "node tooling/maybe-codegen.js && cross-env VITE_SCRIPT=playground vite build",
"build:power-reader": "node tooling/maybe-codegen.js && cross-env VITE_SCRIPT=power-reader vite build",
"test": "playwright test && npm run test:audit",
"test:power-reader": "npm run build:power-reader && playwright test && npm run test:audit",
"test:audit": "tsx tooling/check-coverage.ts",
"test:sync-emulator": "tsx tests/integration/firestore-sync/run.ts",
"codegen": "graphql-codegen --config codegen.ts",
"lint": "npm run lint:app",
"lint:app": "eslint src/scripts/power-reader src/shared tests tooling eslint.config.js",
"lint:changed": "node tooling/lint-changed.mjs",
"check:eol": "node tooling/check-eol.mjs",
"fix:eol": "node tooling/fix-eol.mjs",
"update-schema": "node src/shared/graphql/fetch_schema.js && npm run codegen"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@graphql-codegen/cli": "^6.1.1",
"@graphql-codegen/schema-ast": "^5.0.0",
"@graphql-codegen/typescript": "^5.0.7",
"@graphql-codegen/typescript-operations": "^5.0.7",
"@playwright/test": "^1.58.1",
"@types/node": "^25.1.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"cross-env": "^10.1.0",
"eslint": "^10.0.0",
"graphql": "^16.12.0",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.2.4",
"vite-plugin-monkey": "7.1.9"
},
"overrides": {
"minimatch": "^10.2.1",
"immutable": "^4.3.8"
}
}