-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1014 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1014 Bytes
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
{
"name": "json-visual-diff",
"private": true,
"description": "一个强大且灵活的 JSON 可视化差异对比 SDK,采用可插拔的渲染器架构设计,支持实时编辑预览和多种扩展类型",
"scripts": {
"build": "pnpm -r build",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "oxlint .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"typecheck": "pnpm -r typecheck",
"dev": "pnpm --filter ./packages/playground dev",
"clean": "pnpm -r exec rm -rf dist && rm -rf node_modules/.cache",
"changeset": "changeset",
"version": "changeset version",
"release": "./scripts/release.sh"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^22.10.5",
"fast-check": "^3.23.2",
"oxfmt": "^0.21.0",
"oxlint": "^0.15.6",
"tsdown": "^0.18.4",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}