-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.32 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.32 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
{
"name": "docsify-serve",
"description": "Enhanced development server for Docsify",
"keywords": [
"docsify"
],
"repository": {
"type": "git",
"url": "git+https://github.com/simochee/docsify-serve.git"
},
"license": "MIT",
"author": {
"name": "simochee",
"email": "lollipop@simochee.net",
"url": "https://simochee.net"
},
"type": "module",
"bin": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsup src/index.ts --out-dir lib --format esm --clean",
"dev": "tsx src/index.ts",
"prepare": "husky install"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"commander": "^12.1.0",
"live-server": "^1.2.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node20": "^20.1.4",
"@types/connect": "^3.4.38",
"@types/live-server": "^1.2.3",
"@types/node": "^22.10.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"prettier-plugin-packagejson": "^2.5.6",
"tsup": "^8.3.5",
"tsx": "^4.19.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}