-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.03 KB
/
package.json
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
{
"description": "OctoSSO is a browser extension to assist GitHub's single sign-on feature",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ganta/octosso.git"
},
"bugs": {
"url": "https://github.com/ganta/octosso/issues"
},
"type": "module",
"scripts": {
"dev": "vite build --watch",
"clean": "rimraf 'dist/*' '*.zip'",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"lint": "run-p --print-label 'lint:*'",
"lint:biome": "biome lint .",
"lint:prettier": "prettier --check .",
"fix": "run-s --print-label 'fix:*'",
"fix:biome": "biome lint --apply .",
"fix:prettier": "prettier --write .",
"package": "run-s --print-label clean build && tsx scripts/zip.ts octosso.zip dist"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/archiver": "6.0.3",
"archiver": "7.0.1",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"tsx": "4.19.2",
"typescript": "5.6.3",
"vite": "5.4.11"
}
}