-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.35 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.35 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
60
61
{
"name": "@zpress/cli",
"version": "0.4.3",
"description": "CLI for building and serving zpress documentation sites",
"keywords": [
"cli",
"docs",
"rspress",
"zpress"
],
"homepage": "https://github.com/joggrdocs/zpress/tree/main/packages/cli#readme",
"bugs": "https://github.com/joggrdocs/zpress/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joggrdocs/zpress.git",
"directory": "packages/cli"
},
"bin": {
"zpress": "./dist/index.mjs"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "rslib build",
"dev": "node ./dist/index.mjs dev --cwd ../..",
"test": "vitest run",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@kidd-cli/core": "^0.10.0",
"@rspress/core": "catalog:",
"@zpress/core": "workspace:*",
"@zpress/templates": "workspace:*",
"@zpress/ui": "workspace:*",
"es-toolkit": "catalog:",
"get-port": "^7.2.0",
"ts-pattern": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@rslib/core": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=24.0.0"
}
}