-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.58 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
77
78
79
80
81
82
83
84
85
86
{
"name": "paws",
"private": true,
"description": "Zero-trust credential injection for AI agents — secrets never enter the sandbox",
"workspaces": {
"packages": [
"packages/*",
"packages/domains/*",
"apps/*",
"providers/*"
],
"catalog": {
"@vitest/coverage-v8": "^4.1.2",
"vitest": "^4.1.2",
"neverthrow": "^8.2.0",
"zod": "^4.3.6",
"bun-types": "^1.3.11",
"@hono/zod-openapi": "^1.2.3",
"hono": "^4.7.0",
"prom-client": "^15.1.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@base-ui/react": "^1.3.0",
"lucide-react": "^1.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"tailwindcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"shadcn": "^4.1.2",
"typescript": "^6.0.2",
"better-sqlite3": "^12.8.0",
"drizzle-orm": "^0.45.2"
}
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:integration": "turbo run test:integration",
"test:vm": "turbo run test:vm",
"test:vm:remote": "scripts/test-vm-remote.sh",
"lint": "oxlint --ignore-path .oxlintignore .",
"lint:fix": "oxlint --ignore-path .oxlintignore --fix .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"typecheck": "turbo run typecheck",
"typecheck:root": "tsc --build",
"test:affected": "turbo run test --affected",
"typecheck:affected": "turbo run typecheck --affected",
"check": "oxlint --ignore-path .oxlintignore . && turbo run typecheck && oxfmt --check . && syncpack lint && knip",
"start": "turbo run start",
"clean": "turbo run clean && find . -name '*.tsbuildinfo' -delete && rm -rf node_modules",
"knip": "knip",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.11",
"@vitest/coverage-v8": "catalog:",
"husky": "^9.1.7",
"knip": "^6.0.6",
"lint-staged": "^16.4.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"syncpack": "^14.2.1",
"turbo": "^2.5.0",
"typescript": "catalog:"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint --ignore-path .oxlintignore",
"oxfmt --write"
],
"*.{json,md,yml,yaml}": [
"oxfmt --write"
]
},
"packageManager": "bun@1.3.9"
}