-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.59 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
{
"name": "navpress",
"version": "1.0.0-beta.7",
"description": "Easy navigation website generator",
"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",
"lint": "eslint --ext .js,.vue src",
"format": "prettier --write \"src/**/*.{js,vue,ts,json,css,scss,md}\""
},
"bin": {
"navpress": "./bin/navpress.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronlamz/nav-generator.git"
},
"keywords": [
"navpress"
],
"author": "aaronlamz",
"engines": {
"node": ">=18"
},
"engineStrict": true,
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronlamz/nav-generator/issues"
},
"homepage": "https://github.com/aaronlamz/nav-generator#readme",
"dependencies": {
"@vitejs/plugin-vue": "^5.1.0",
"autoprefixer": "^10.4.19",
"commander": "^8.0.0",
"fs-extra": "^11.2.0",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.6",
"vite": "^5.3.4",
"vue": "^3.4.33",
"vue-router": "^4.4.0"
},
"devDependencies": {
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue,ts,json,css,scss,md}": [
"prettier --write"
]
}
}