-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.98 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.98 KB
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
{
"name": "@tomjs/electron-devtools-installer",
"type": "commonjs",
"version": "4.0.1",
"packageManager": "pnpm@10.22.0",
"description": "Install Chrome extension for Electron, support cjs/esm",
"author": {
"name": "Tom Gao",
"email": "tom@tomgao.cc"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomjs/electron-devtools-installer.git"
},
"keywords": [
"electron",
"devtools",
"installer",
"chrome",
"extension"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"start": "tsx ./src/index.ts",
"test": "jest",
"lint": "eslint \"{src,test}/**/*.ts\" *.{js,mjs,ts} --fix --cache",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"electron": ">=12.0.0"
},
"dependencies": {
"@tomjs/unzip-crx": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@jest/globals": "^29.7.0",
"@kayahr/jest-electron-runner": "^29.14.0",
"@tomjs/commitlint": "^5.0.0",
"@tomjs/eslint": "^6.0.0",
"@tomjs/prettier": "^2.1.0",
"@tomjs/tsconfig": "^2.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.39",
"eslint": "^9.39.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"publint": "^0.3.15",
"rimraf": "^5.0.9",
"simple-git-hooks": "^2.13.1",
"ts-jest": "^29.2.2",
"tsdown": "^0.16.4",
"tsx": "^4.16.2",
"typescript": "~5.8.3"
}
}