-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "mdn-docs-desktop",
"version": "0.1.0",
"private": true,
"description": "Delightful offline MDN docs viewer",
"main": "main.js",
"scripts": {
"start": "electron ./dist",
"watch": "node scripts/watch.js",
"build": "node scripts/build.js",
"watch-electron": "rollup -c -w",
"watch-js": "cd src && rollup -c -w",
"compile-css": "sass src/index.scss dist/index.css -s compressed -I node_modules/@primer/primitives/dist/scss -c",
"lint": "eslint ./electron --fix || eslint --ext js,ts ./src --fix",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LitileXueZha/MDN-Docs-Desktop.git"
},
"keywords": [
"mdn",
"desktop",
"web"
],
"author": "litilexuezha",
"license": "MIT",
"bugs": {
"url": "https://github.com/LitileXueZha/MDN-Docs-Desktop/issues"
},
"homepage": "https://github.com/LitileXueZha/MDN-Docs-Desktop#readme",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@rollup/plugin-virtual": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"asar": "^3.2.0",
"chokidar": "^3.5.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"debug": "^4.3.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"html-minifier-terser": "^7.1.0",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.9",
"typescript": "^4.8.4"
},
"dependencies": {
"@primer/primitives": "^7.5.0",
"electron": "^17.4.7",
"front-matter": "^4.0.2",
"highlight.js": "^11.5.0",
"js-yaml": "^4.1.0",
"marked": "^4.0.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}