-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "@nzdjb/static-site-generator",
"version": "0.9.3",
"description": "Static site generator.",
"main": "dist/src/index.js",
"repository": "https://github.com/nzdjb/static-site-generator",
"author": "nzdjb",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"test": "node --test",
"lint": "eslint src test"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/glob": "^8.1.0",
"@types/marked": "^6.0.0",
"@types/node": "^22.5.0",
"@types/sanitize-html": "^2.9.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"esbuild": "^0.24.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^7.1.0",
"prettier": "^3.0.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.2.0",
"yarn": "^1.22.22"
},
"bin": "dist/src/index.js",
"dependencies": {
"@iarna/toml": "^2.2.5",
"es-main": "^1.3.0",
"glob": "^11.0.0",
"handlebars": "^4.7.7",
"marked": "^15.0.2",
"sanitize-html": "^2.10.0",
"ts-command-line-args": "^2.4.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/src/**/*"
],
"packageManager": "yarn@3.6.3"
}