-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.75 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
66
67
68
69
70
71
{
"name": "@tomjs/electron-devtools-files",
"version": "1.4.15",
"description": "Chrome devtools files for Electron",
"keywords": [
"electron",
"devtools",
"chrome",
"extension",
"crx"
],
"author": {
"name": "Tom Gao",
"email": "tom@tomgao.cc"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/electron-devtools-files.git"
},
"files": [
"extensions/*.crx",
"extensions/collections.json",
"index.js"
],
"main": "index.js",
"scripts": {
"download": "node -r dotenv-flow/config --require tsx/cjs ./scripts/download.ts",
"release": "tsx ./scripts/release.ts",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint \"scripts/**/*.ts\" *.{js,cjs,ts} --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@tomjs/commitlint": "^2.1.1",
"@tomjs/eslint": "^1.2.1",
"@tomjs/prettier": "^1.1.1",
"@tomjs/tsconfig": "^1.2.1",
"@tomjs/unzip-crx": "^1.0.6",
"@types/download": "^8.0.5",
"@types/node": "^18.19.3",
"@types/semver": "^7.5.8",
"@types/shelljs": "^0.8.15",
"dotenv-flow": "^4.0.1",
"download": "^8.0.0",
"eslint": "^8.56.0",
"hpagent": "^1.2.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"shelljs": "^0.8.5",
"simple-git": "^3.21.0",
"tsx": "^4.7.0",
"typescript": "~5.3.3"
},
"packageManager": "pnpm@9.1.1",
"dependencies": {
"semver": "^7.6.2"
}
}