-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.63 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
{
"name": "vitrify-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-s build:tools build:vitrify build:create-vitrify",
"build:vitrify": "cd packages/vitrify && pnpm run build",
"build:tools": "cd packages/tools && pnpm run build",
"build:create-vitrify": "cd packages/create-vitrify && pnpm run build",
"format:check": "oxfmt --check .",
"format:write": "oxfmt --write .",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish",
"lint": "oxlint packages/*/src/",
"lint:fix": "oxlint packages/*/src/ --fix",
"test:vitrify": "cd packages/vitrify && pnpm run test",
"test:create-vitrify": "cd packages/create-vitrify && pnpm run test",
"test": "run-s test:vitrify test:create-vitrify"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@pinia/colada": "^0.17.1",
"changesets": "^1.0.2",
"git-conventional-commits": "^2.8.0",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"simple-git-hooks": "^2.13.0"
},
"overrides": {
"@vitrify/tools": "workspace:*",
"vitrify": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint && pnpm run format:check",
"commit-msg": "pnpm exec commitlint --edit $1"
},
"lint-staged": {
"*": [
"oxfmt --write --ignore-unknown"
],
"packages/*/{src,types}/**/*.ts": [
"oxlint --ext .ts"
],
"packages/**/*.d.ts": [
"oxlint --ext .ts"
]
},
"engines": {
"node": ">=24.0.0"
}
}