-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "basb-cli",
"description": "Blog as Second Brain!",
"version": "1.3.5",
"author": "BHznJNs",
"repository": "https://github.com/BHznJNs/BaSB",
"license": "GPL-v3",
"type": "module",
"main": "./builder/exports.js",
"types": "./types/index.d.ts",
"exports": {
".": "./builder/exports.js",
"./types": "./types/index.d.ts"
},
"bin": {
"basb-cli": "./cli.js"
},
"keywords": [
"static-blog-generator",
"second-brain"
],
"scripts": {
"dev": "rollup --watch --config builder/rollup.config.js",
"build": "rollup --config builder/rollup.config.js",
"test": "mocha ./builder/test/*.test.js ./builder/test/**/*.test.js"
},
"dependencies": {
"basb-mcp": "^1.0.6",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"electron": "^35.0.0",
"express": "^4.21.2",
"html2canvas": "^1.4.1",
"utimes": "^5.2.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-terser": "^0.4.4",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.2",
"mocha": "^11.1.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"rollup": "^4.35.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2"
}
}