forked from vercel-labs/visual-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 986 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 986 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
35
36
37
38
{
"name": "visual-json",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "turbo run format",
"type-check": "turbo run check-types",
"check-types": "turbo run check-types",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky",
"changeset": "changeset",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@eslint/js": "^10.0.1",
"eslint": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"turbo": "^2.8.10",
"typescript": "5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.1",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write"
}
}