-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.56 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.56 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "zpress-monorepo",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"clean": "lauf run clean",
"format": "oxfmt",
"format:fix": "oxfmt --write",
"lint": "oxlint --ignore-pattern node_modules --ignore-pattern benchmarks --ignore-pattern examples",
"lint:fix": "oxlint --fix --ignore-pattern node_modules --ignore-pattern benchmarks --ignore-pattern examples",
"test": "turbo run test",
"check": "turbo run typecheck //#lint //#format",
"validate": "turbo run typecheck //#lint //#format --ui=stream",
"changeset": "changeset",
"version": "changeset version",
"postversion": "oxfmt --write",
"prerelease": "turbo run build",
"release": "changeset publish",
"docs:dev": "node packages/zpress/dist/cli.mjs dev",
"docs:build": "node packages/zpress/dist/cli.mjs build",
"docs:serve": "node packages/zpress/dist/cli.mjs serve",
"docs:generate": "lauf run docs",
"dev": "turbo run dev",
"stories": "pnpm --filter @zpress/cli stories",
"bench": "pnpm --filter benchmarks bench",
"bench:run": "pnpm --filter benchmarks bench:run"
},
"dependencies": {
"@zpress/kit": "workspace:*"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@iconify-json/catppuccin": "^1.2.17",
"@iconify-json/devicon": "^1.2.62",
"@iconify-json/logos": "^1.2.11",
"@iconify-json/material-icon-theme": "^1.2.58",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/pixelarticons": "^1.2.4",
"@iconify-json/simple-icons": "^1.2.77",
"@iconify-json/skill-icons": "^1.2.4",
"@iconify-json/vscode-icons": "^1.2.45",
"@microsoft/api-extractor": "^7.58.7",
"@types/node": "^25.6.0",
"@typescript/native-preview": "catalog:",
"eslint-plugin-functional": "^9.0.4",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-security": "^4.0.0",
"laufen": "^1.3.1",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"rimraf": "^6.1.3",
"turbo": "^2.9.6",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.32.0+sha512.9b2634bb3fed5601c33633f2d92593f506270a3963b8c51d2b2d6a828da615ce4e9deebef9614ccebbc13ac8d3c0f9c9ccceb583c69c8578436fa477dbb20d70",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"@rsbuild/core": "2.0.0-rc.1"
},
"packageExtensions": {
"ink-gradient": {
"peerDependencies": {
"react": "*"
}
}
}
}
}