-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
65 lines (65 loc) · 2.07 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "weibo-picture-store",
"version": "6.0.2",
"private": true,
"description": "Web Extension",
"packageManager": "[email protected]",
"scripts": {
"prepare": "node ./.husky/setup.js",
"husky:pre-commit": "lint-staged",
"husky:commit-msg": "commitlint --edit ${1}",
"test": "pnpm run tscheck && pnpm run build && pnpm run webext:lint",
"tscheck": "tsc --noEmit",
"watch": "tsc --watch",
"build": "tsc --sourceMap false",
"webext:lint": "pnpm run apply:manifest:firefox && web-ext lint",
"webext:run": "pnpm run apply:manifest:firefox && web-ext run",
"apply:manifest:firefox": "gulp apply:manifest:firefox",
"bundle:chrome": "rimraf dist/chrome && pnpm run build && gulp bundle:chrome",
"bundle:firefox": "rimraf dist/firefox && pnpm run build && gulp bundle:firefox",
"bundle:all": "rimraf dist && pnpm run build && gulp bundle:chrome && gulp bundle:firefox"
},
"webExt": {
"sourceDir": "src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Semibold/Weibo-Picture-Store.git"
},
"author": "Aqours",
"license": "MIT",
"bugs": {
"url": "https://github.com/Semibold/Weibo-Picture-Store/issues"
},
"homepage": "https://github.com/Semibold/Weibo-Picture-Store#readme",
"prettier": {
"singleQuote": false,
"trailingComma": "all"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/chrome": "latest",
"@types/firefox-webext-browser": "^120.0.0",
"@types/gulp": "^4.0.6",
"@types/merge-stream": "^1.1.2",
"@types/node": "^20.9.3",
"chrome-webstore-upload-cli": "^2.2.2",
"ci-info": "^4.0.0",
"gulp": "^4.0.2",
"gulp-json-modify": "^1.0.2",
"gulp-rename": "^2.0.0",
"gulp-zip": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"merge-stream": "^2.0.0",
"npm-check-updates": "^16.14.11",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.2",
"web-ext": "^7.8.0"
}
}