-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 991 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 991 Bytes
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
{
"name": "openthreads-trace",
"version": "1.0.0",
"description": "Compliance Exposure Scanner Browser Extension",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,json,css}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,json,css}'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "node scripts/install-hooks.js"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@types/chrome": "^0.0.287",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.20.0",
"jsdom": "^28.1.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5"
}
}