-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 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
{
"name": "bbg",
"version": "20241113.0.0",
"packageManager": "[email protected]",
"description": "A static blog generator based on Electron Technology.",
"license": "UNLICENSED",
"author": {
"name": "baiyuanneko",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/bbg-contributors/bbg.git"
},
"main": "main.js",
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow yarn",
"start": "electron ./main.js",
"start_in_native_wayland_mode": "electron ./main.js --enable-features=WaylandWindowDecorations --ozone-platform-hint=wayland",
"dev": "electron ./main_dev.js",
"dev_with_hot_reload": "electron ./main_dev.js --hot-reload",
"dev_in_native_wayland_mode": "electron ./main_dev.js --enable-features=WaylandWindowDecorations --ozone-platform-hint=wayland",
"build:win": "electron-builder build --win --publish=never",
"build:linux": "electron-builder build --linux --publish=never",
"build:mac": "electron-builder build --mac --publish=never",
"modify_version_number": "node ./modify_version_number.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:html": "htmlhint \"**/*.html\"",
"read_doc": "node ./start_docsify_server.js"
},
"maintainers": [
"baiyuanneko",
"chihuo2104",
"mzwing",
"Misaka13514",
"scientificworld",
"so1ve",
"mujitogawa",
"JJ-Shep"
],
"dependencies": {
"@electron/remote": "^2.1.2",
"@popperjs/core": "^2.11.8",
"@xterm/xterm": "^5.5.0",
"adm-zip": "^0.5.16",
"bootstrap": "5.3.3",
"crypto-js": "^4.2.0",
"electron-json-storage": "^4.5.0",
"electron-reloader": "^1.2.3",
"express": "^4.21.2",
"font-awesome": "4.7.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"marked": "^15.0.5",
"marked-base-url": "^1.1.6",
"native-prompt": "^2.1.4",
"request": "^2.88.2",
"sjcl": "^1.0.8",
"tinycolor2": "^1.6.0",
"xss": "^1.0.15"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"docsify": "^4.13.1",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"eslint": "^9.4.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-yml": "^1.16.0",
"globals": "^15.13.0",
"htmlhint": "^1.1.4"
},
"bugs": {
"url": "https://github.com/bbg-contributors/bbg/issues"
},
"lint-staged": {
"*.js": "eslint --fix"
}
}