-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.35 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.35 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
{
"name": "tabshield",
"private": true,
"version": "1.1.1",
"type": "module",
"license": "MIT",
"scripts": {
"compile": "tsc --noEmit",
"dev": "vite",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"clean": "rimraf dist dist-archives",
"build": "vite build",
"build:firefox": "TARGET=firefox vite build",
"build:chrome": "TARGET=chrome vite build",
"bundle:firefox": "npm run clean && npm run build:firefox && tsx scripts/bundle.ts firefox",
"bundle:chrome": "npm run clean && npm run build:chrome && tsx scripts/bundle.ts chrome",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/webextension-polyfill": "^0.10.0",
"archiver": "^7.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "~5.6.3",
"vite": "^6.4.1",
"vite-plugin-web-extension": "^4.0.0",
"webextension-polyfill": "^0.10.0"
}
}