forked from middleapi/orpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.51 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.51 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
{
"name": "@orpc/monorepo",
"type": "module",
"version": "1.11.0",
"private": true,
"packageManager": "pnpm@10.20.0",
"scripts": {
"prepare": "simple-git-hooks",
"build": "pnpm run -r build",
"build:packages": "pnpm --filter=\"./packages/*\" run -r build",
"preview": "pnpm run --parallel preview",
"type:check": "pnpm run -r type:check && pnpm run -r type:check:test && tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage --coverage.include='packages/*/src/**'",
"test:ui": "vitest --ui --coverage --coverage.include='packages/*/src/**'",
"lint": "eslint --max-warnings=0 .",
"lint:fix": "pnpm run lint --fix",
"sherif": "sherif",
"sherif:fix": "pnpm run sherif --fix",
"knip": "knip --production",
"knip:fix": "pnpm run knip --fix --allow-remove-files",
"packages:bump": "bumpp -r",
"packages:publish": "pnpm run build:packages && pnpm --filter='./packages/*' publish -r --access=public",
"packages:publish:commit": "pnpm run build:packages && pkg-pr-new publish './packages/*' --pnpm --compact --template './playgrounds/*'",
"packages:changelog:github": "changelogithub --draft"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@solidjs/testing-library": "^0.8.10",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.0.1",
"@testing-library/svelte": "^5.2.7",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.30",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"better-sqlite3": "^12.4.1",
"bumpp": "^10.3.1",
"changelogithub": "^13.16.1",
"eslint": "^9.39.1",
"eslint-plugin-ban": "^2.0.0",
"eslint-plugin-format": "^1.0.2",
"jsdom": "^27.1.0",
"knip": "^5.66.4",
"lint-staged": "^16.2.6",
"msw": "^2.11.6",
"pkg-pr-new": "^0.0.60",
"sherif": "^1.7.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vite-plugin-solid": "^2.11.10",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"esbuild"
],
"overrides": {
"@wxt-dev/storage": "1.2.0",
"typescript": "~5.8.3"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --no-warn-ignored --max-warnings=0 --fix"
}
}