-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.92 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
48
49
50
51
52
{
"name": "atti",
"version": "0.5.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "wxt",
"dev:edge": "wxt -b edge",
"build": "wxt build",
"build:edge": "wxt build -b edge",
"zip": "wxt zip",
"zip:edge": "wxt zip -b edge",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write \"**/*.{ts,tsx,mjs,json,html}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,mjs,json,html}\"",
"test": "vitest run --config tests/config/vitest.unit.config.mjs --configLoader native && vitest run --config tests/config/vitest.integration.config.mjs --configLoader native",
"test:unit": "vitest run --config tests/config/vitest.unit.config.mjs --configLoader native",
"test:integration": "vitest run --config tests/config/vitest.integration.config.mjs --configLoader native",
"pretest:e2e": "wxt build -b edge",
"test:e2e": "playwright test --config tests/e2e/playwright.config.ts",
"test:watch": "vitest --configLoader native",
"typecheck": "tsc --noEmit",
"quality:advisory": "node scripts/release-confidence-gate.mjs --advisory-quality",
"quality:strict": "node scripts/release-confidence-gate.mjs --strict-quality",
"release:check": "node scripts/release-confidence-gate.mjs",
"release:check:e2e": "node scripts/release-confidence-gate.mjs --with-e2e",
"postinstall": "wxt prepare"
},
"dependencies": {
"dexie": "^4.4.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"zod": "^4.3.6",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.55.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"eslint": "^10.2.1",
"fake-indexeddb": "^6.2.5",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5",
"wxt": "^0.20.25"
}
}