-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.06 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@tomjs/electron-devtools-installer",
"version": "2.4.0",
"description": "Install Chrome extension for Electron, support cjs/esm",
"keywords": [
"electron",
"devtools",
"installer",
"chrome",
"extension"
],
"author": {
"name": "Tom Gao",
"email": "tom@tomgao.cc"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/electron-devtools-installer.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
}
},
"scripts": {
"dev": "tsup --watch",
"start": "tsx ./src/index.ts",
"build": "tsup",
"test": "jest",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint \"{src,test}/**/*.ts\" *.{js,cjs,ts} --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky install",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@tomjs/unzip-crx": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@jest/globals": "^29.7.0",
"@kayahr/jest-electron-runner": "^29.14.0",
"@tomjs/commitlint": "^3.3.0",
"@tomjs/eslint": "^3.3.0",
"@tomjs/prettier": "^1.4.1",
"@tomjs/tsconfig": "^1.7.1",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.39",
"electron": "^28.0.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.9",
"ts-jest": "^29.2.2",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typescript": "~5.5.3"
},
"peerDependencies": {
"electron": ">=12.0.0"
},
"packageManager": "pnpm@8.15.8"
}