-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.35 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
72
73
74
75
76
77
78
79
{
"name": "@tobi-or-not/docpress",
"type": "module",
"version": "0.5.1",
"packageManager": "[email protected]",
"homepage": "https://this-is-tobi.com/docpress/introduction",
"repository": {
"type": "git",
"url": "https://github.com/this-is-tobi/docpress.git"
},
"module": "dist/docpress.js",
"types": "types/index.d.ts",
"bin": {
"docpress": "bin/docpress.js"
},
"files": [
"bin",
"dist",
"types"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm run build:types && pnpm run build:vite",
"build:clean": "rimraf ./dist ./types ./tsconfig.tsbuildinfo",
"build:docker": "docker build --tag tobi-or-not/docpress --target prod .",
"build:types": "tsc",
"build:vite": "vite build",
"dev": "vite-node ./dev/docpress.ts",
"dev:clean": "rimraf ./docpress && pnpm run dev",
"format": "eslint . --fix",
"lint": "eslint .",
"prepare": "husky",
"start": "./bin/docpress.js",
"start:docker": "docker run --name docpress --rm -v $(pwd)/docpress:/app/docpress:rw tobi-or-not/docpress",
"stop:docker": "docker rm --force docpress",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"vp:build": "vitepress build ./docpress",
"vp:build:docker": "docker build --tag tobi-or-not/docs --target prod .",
"vp:dev": "vitepress dev ./docpress --port 8080",
"vp:dev:docker": "docker run --publish 8080:8080 --name docpress-vp --rm tobi-or-not/docs",
"vp:preview": "vitepress preview ./docpress --port 8080"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"axios": "^1.7.9",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"octokit": "^4.0.2",
"rimraf": "^6.0.1",
"simple-git": "^3.27.0",
"vitepress": "^1.5.0",
"yaml": "^2.6.1",
"zod": "^3.24.1",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@octokit/types": "^13.6.2",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-node": "^2.1.8",
"vitest": "^2.1.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"tag": "latest"
}
}