-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2 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
74
75
76
77
78
79
80
81
82
{
"name": "navpress",
"version": "1.3.2",
"description": "Easy navigation website generator - base path fix",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"dev": "vite",
"build": "vite build && node ./src/node/prerender.cjs",
"serve": "vite preview",
"preview": "npm run build && node bin/navpress.mjs dev",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{js,vue,ts,json,css,scss,md}\"",
"prepublishOnly": "npm run build",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"bin": {
"navpress": "bin/navpress.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronlamz/navpress.git"
},
"keywords": [
"navpress",
"static-site-generator",
"navigation",
"vue",
"cli",
"website-builder"
],
"files": [
"bin/",
"dist/",
"README.md",
"README_zh.md"
],
"author": "aaronlamz",
"engines": {
"node": ">=18"
},
"engineStrict": true,
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronlamz/navpress/issues"
},
"homepage": "https://github.com/aaronlamz/navpress#readme",
"dependencies": {
"commander": "^8.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"fs-extra": "^11.2.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.6",
"vite": "^5.3.4",
"vue": "^3.4.33",
"vue-router": "^4.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue,ts,json,css,scss,md}": [
"prettier --write"
]
}
}