-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.15 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.15 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
{
"name": "scriptvault",
"version": "2.0.6",
"private": true,
"type": "module",
"scripts": {
"build": "node esbuild.config.mjs",
"build:bg": "node esbuild.config.mjs --bg-only",
"build:prod": "node esbuild.config.mjs --prod",
"build:monaco": "node esbuild.config.mjs --monaco-only",
"dev": "node esbuild.config.mjs --watch",
"watch": "node esbuild.config.mjs --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:a11y": "vitest run tests/dashboard-a11y.test.js",
"test:cov": "vitest run --coverage",
"check": "tsc --noEmit && vitest run",
"clean": "node --input-type=commonjs -e \"const fs=require('fs'); fs.rmSync('background.js',{force:true}); fs.rmSync('lib/monaco',{recursive:true,force:true});\"",
"publish": "bash publish.sh",
"publish:draft": "bash publish.sh --draft",
"cws:setup": "bash cws-setup.sh"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.3",
"chrome-types": "^0.1.425",
"chrome-webstore-upload-cli": "^3.5.0",
"esbuild": "^0.27.4",
"jsdom": "^29.0.1",
"monaco-editor": "^0.52.0",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
}
}