-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "@electron/typescript-definitions",
"version": "0.0.0-development",
"description": "Automatically generated TypeScript definitions files for the Electron API",
"bin": {
"electron-typescript-definitions": "dist/bin.js"
},
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"build": "tsc",
"prepare": "husky",
"prepublishOnly": "yarn build",
"prettier:check": "prettier --list-different \"{src,test}/**/*.ts\"",
"prettier:write": "prettier --write \"{src,test}/**/*.ts\"",
"pretest": "tsc",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest"
},
"author": {
"name": "Samuel Attard",
"homepage": "https://www.samuelattard.com"
},
"license": "MIT",
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@electron/docs-parser": "^2.0.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.7",
"cross-env": "^7.0.3",
"husky": "^9.1.6",
"jest": "^30.0.0-alpha.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/node": "^20.11.25",
"chalk": "^5.3.0",
"debug": "^4.3.7",
"lodash": "^4.17.11",
"ora": "^8.1.0",
"pretty-ms": "^9.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/typescript-definitions.git"
},
"files": [
"dist",
"README.md",
"base"
],
"lint-staged": {
"*.ts": "prettier --write"
}
}