-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 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
{
"name": "hexo-plugin",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/uiolee/hexo-plugin",
"bugs": {
"url": "https://github.com/uiolee/hexo-plugin"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/uiolee/hexo-plugin.git"
},
"license": "MPL-2.0",
"author": "uiolee (https://github.com/uiolee)",
"type": "module",
"scripts": {
"build": "turbo build",
"check-types": "turbo check-types",
"clean": "pnpm dlx rimraf -g '**/node_modules' '**/dist' '**/coverage' '**/.turbo' '**/.esbuild.metafile.json' '**/.tsbuildinfo' '**/.temp'",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{md}\"",
"lint": "turbo lint",
"list-packages": "node ./scripts/list.mjs",
"prepack": "echo \"don't run pack/publish in root!\" && exit 1",
"prepare": "turbo run build -F eslint-config",
"publish-packages": "turbo run build && changeset publish",
"sort": "pnpm -r exec sort-package-json && sort-package-json",
"test": "turbo test",
"test:lcov": "turbo test:lcov",
"version-packages": "changeset version && pnpm run list-packages"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.13",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.5.5",
"@types/nunjucks": "^3.2.6",
"esbuild": "^0.23.1",
"esbuild-jest2": "^0.6.7",
"esbuild-register": "^3.6.0",
"eslint": "^9.10.0",
"eslint-config": "workspace:^",
"hexo": "7.3.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.1",
"turbo": "^2.1.2",
"typescript": "^5.5.0 <5.6.0",
"typescript-config": "workspace:^"
},
"packageManager": "pnpm@9.10.0",
"engines": {
"node-lts": ">=20"
}
}