-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
executable file
·89 lines (89 loc) · 2.36 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
84
85
86
87
88
89
{
"name": "nanogen",
"version": "0.4.6",
"description": "Minimalist static site generator in Node.js",
"repository": {
"type": "git",
"url": "git+https://github.com/doug2k1/nanogen.git"
},
"keywords": [
"static site generator"
],
"author": "Douglas Matoso <[email protected]> (https://dmatoso.com)",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"bin": {
"nanogen": "dist/cli.js"
},
"files": [
"dist",
"template"
],
"scripts": {
"build": "tsup-node",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest --coverage",
"prettier": "prettier \"./{src,docs-src,template}/**/*.{js,ts,md,css,html}\"",
"prettier:check": "npm run prettier -- -l",
"lint": "eslint \"./{src,docs-src,template}/**/*\"",
"start": "tsx src/cli.ts",
"start:docs": "node dist/cli start",
"build:docs": "cross-env NODE_ENV=production node dist/cli build",
"version": "tsx scripts/update-template-version.ts"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"chokidar": "^4.0.3",
"commander": "^13.0.0",
"ejs": "^3.1.10",
"front-matter": "^4.0.2",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"lodash.debounce": "^4.0.8",
"marked": "^15.0.6",
"nanospinner": "^1.2.2",
"picocolors": "^1.1.1",
"sirv": "^3.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@tsconfig/node20": "^20.1.4",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/live-server": "^1.2.3",
"@types/lodash.debounce": "^4.0.9",
"@types/meow": "^6.0.0",
"@types/node": "^22.10.6",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^2.1.8",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-n": "^17.15.1",
"globals": "^15.14.0",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"bugs": {
"url": "https://github.com/doug2k1/nanogen/issues"
},
"homepage": "https://github.com/doug2k1/nanogen#readme"
}