-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.91 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
{
"name": "@electron/docs-parser",
"version": "0.0.0-development",
"description": "Parse Electron documentation into a machine readable JSON file",
"exports": "./dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"author": "Samuel Attard",
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npx yarn build",
"prettier:check": "prettier --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "tsc --noEmit -p tests && vitest run",
"prepare": "husky"
},
"bin": {
"electron-docs-linter": "./dist/bin.js",
"electron-docs-parser": "./dist/bin.js"
},
"files": [
"dist"
],
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/chai": "^4.3.19",
"@types/lodash.camelcase": "^4.3.9",
"@types/node": "^22.10.7",
"@types/pretty-ms": "^5.0.1",
"husky": "^9.1.6",
"lint-staged": "^16.2.7",
"prettier": "^3.3.3",
"typescript": "^5.8.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@types/markdown-it": "^14.1.2",
"chai": "^5.1.1",
"chalk": "^5.3.0",
"lodash.camelcase": "^4.3.0",
"markdown-it": "^14.1.0",
"ora": "^8.1.0",
"pretty-ms": "^9.1.0"
},
"lint-staged": {
"*.ts": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/docs-parser.git"
},
"keywords": [
"electron",
"docs",
"documentation",
"api",
"typescript",
".d.ts",
"definitions"
],
"bugs": {
"url": "https://github.com/electron/docs-parser/issues"
},
"homepage": "https://github.com/electron/docs-parser#readme",
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}