forked from macropygia/static-site-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"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": ">=16.8.0",
"npm": "use pnpm",
"pnpm": ">=7",
"yarn": "use pnpm"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vitest/coverage-c8": "^0.26.2",
"axios": "^1.2.1",
"c8": "^7.12.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.12.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"fs-extra": "^11.1.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.1",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.26.2"
}
}