-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.75 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
{
"version": "0.0.7",
"private": true,
"workspaces": [
"packages/ui",
"packages/site",
"web",
"sdk/typescript",
"sdk/create-extension",
"sdk/examples/prompt-enhancer"
],
"scripts": {
"build": "make build && turbo run build",
"bun:build": "turbo run build",
"bun:lint": "bun run format:check && bunx oxlint --deny-warnings",
"bun:test": "turbo run test",
"bun:test:cold": "turbo run test --force",
"bun:typecheck": "turbo run typecheck",
"codegen": "make codegen",
"codegen-check": "make codegen-check",
"dev": "turbo run dev --filter=./web",
"doctor": "npx react-doctor@latest",
"format": "make fmt && oxfmt",
"format:check": "bunx oxfmt --check",
"go:lint": "go run github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.11.4 run --allow-parallel-runners ./... && go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@v0.21.1 ./...",
"lint": "bun run go:lint && bun run bun:lint",
"postinstall": "bash scripts/postinstall.sh",
"prepare": "husky",
"prs:scrape": "bun run scripts/scrape-prs.ts",
"release:site-changelog": "bun run packages/site/scripts/generate-changelog-release.ts",
"test": "make test && bun run bun:test",
"test:cold": "bun run bun:test:cold",
"test:e2e": "make test-e2e",
"test:e2e:nightly": "make test-e2e-nightly",
"test:e2e:runtime": "make test-e2e-runtime",
"test:e2e:web": "make test-e2e-web",
"tests": "bun run test",
"typecheck": "bun run bun:typecheck"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@octokit/rest": "^22.0.1",
"@types/node": "^25.9.0",
"@typescript/native-preview": "^7.0.0-dev.20260518.1",
"@vitest/coverage-v8": "^4.1.6",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"openapi-typescript": "^7.13.0",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"react-doctor": "^0.2.14",
"shadcn": "^4.7.0",
"tailwindcss": "^4.3.0",
"turbo": "^2.9.14",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.13",
"vitest": "^4.1.6"
},
"lint-staged": {
"*.go": "sh -c 'make fmt'",
"*.{css,html,json,jsonc,yaml,yml,md}": [
"oxfmt --no-error-on-unmatched-pattern"
],
"*.{js,jsx,ts,tsx}": [
"oxfmt --no-error-on-unmatched-pattern",
"oxlint --deny-warnings"
]
},
"packageManager": "bun@1.3.4",
"msw": {
"workerDirectory": [
"web/public"
]
}
}