-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.73 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
{
"name": "static-site-stack",
"version": "0.1.0",
"description": "Tiny tools for traditional static site development.",
"private": true,
"author": "macropygia",
"homepage": "https://github.com/macropygia/static-site-stack",
"repository": {
"type": "git",
"url": "https://github.com/macropygia/static-site-stack.git"
},
"bugs": {
"url": "https://github.com/macropygia/static-site-stack/issues"
},
"scripts": {
"lint": "eslint --fix **/*.{ts,d.ts,js,cjs,mjs}",
"prettier": "prettier --write --ignore-unknown **/*",
"preinstall": "npx -y only-allow pnpm",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false -c lint-staged.mjs"
},
"engines": {
"node": ">=20.11.1",
"npm": "use pnpm",
"pnpm": ">=9",
"yarn": "use pnpm"
},
"packageManager": "pnpm@9.1.3",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "20.13.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitest/coverage-v8": "^1.6.0",
"axios": "^1.7.2",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-tsdoc": "^0.3.0",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}