-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 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
{
"name": "@statewalker/vcs-monorepo",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/statewalker/vcs.git"
},
"type": "module",
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"test:app": "turbo run test:app",
"lint": "biome check --write .",
"lint:check": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"format": "biome format --write .",
"format:check": "biome format .",
"format:fix": "biome check --write --unsafe .",
"dev:notes": "pnpm --filter @statewalker/vcs-notes dev",
"dev:demo": "pnpm --filter demo dev",
"docs:dev": "pnpm --filter @statewalker/vcs-docs dev",
"docs:build": "pnpm --filter @statewalker/vcs-docs build",
"deps:check": "./scripts/update-deps.sh --check-only",
"deps:update": "./scripts/update-deps.sh",
"deps:update:safe": "./scripts/update-deps.sh --test --build",
"deps:update:interactive": "./scripts/update-deps.sh --interactive",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/cli": "^2.29.8",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"pnpm": "catalog:",
"rolldown": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"eslintConfig": {
"extends": []
},
"dependencies": {
"@statewalker/utils": "^0.4.2"
}
}