forked from winebarrel/github-old-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 867 Bytes
/
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
{
"type": "module",
"private": true,
"version": "0.1.0",
"scripts": {
"build": "npm run clean && tsc && vite build",
"build:safari": "npm run clean:safari && npm run build && xcrun safari-web-extension-converter dist",
"zip": "npm run build && cd dist && zip -r ../github-old-dashboard.zip .",
"lint": "prettier --check .",
"format": "prettier --write .",
"watch": "npm-watch",
"clean": "rm -rf dist github-old-dashboard.zip",
"clean:safari": "rm -rf 'GitHub old dashboard/'"
},
"watch": {
"build": {
"patterns": [
"src",
"manifest.json"
],
"extensions": "ts,json"
}
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.18",
"@types/chrome": "^0.0.245",
"npm-watch": "^0.11.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
}