-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.84 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
{
"name": "create-hexo",
"version": "0.3.2",
"description": "Hexo site initializer",
"keywords": [
"hexo",
"initializer"
],
"homepage": "https://github.com/hexojs/create-hexo",
"bugs": {
"url": "https://github.com/hexojs/create-hexo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexojs/create-hexo.git"
},
"license": "MPL-2.0",
"author": "uiolee (https://github.com/uiolee)",
"type": "module",
"main": "bin/index.mjs",
"module": "bin/index.mjs",
"bin": {
"create-hexo": "bin/index.mjs"
},
"files": [
"bin",
"hash",
"hexo-starter",
"hexo-starter/.gitignore",
"!hexo-starter/.github",
"!hexo-starter/.git"
],
"scripts": {
"build": "pnpm run esb",
"esb": "rm -rf bin && node ./scripts/esb.mjs ",
"hash": "bash ./scripts/getHash.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"sort": "pnpm dlx sort-package-json",
"test": "jest",
"test:cov": "jest --coverage --coverageReporters html --coverageReporters text",
"test:lcov": "jest --coverage --coverageReporters lcovonly --coverageReporters text-summary",
"tsb": "tsc -b -v",
"tsbf": "tsc -b -v -f",
"tsbw": "tsc -b -v -w",
"type-check": "tsc --noEmit"
},
"dependencies": {
"commander": "^12.0.0",
"execa": "^9.3.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"esbuild": "^0.23.0",
"esbuild-jest": "^0.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20"
}
}