-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.95 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.95 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
87
88
89
90
{
"dependencies": {
"jsdom": "27.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@cloudflare/vitest-pool-workers": "0.10.14",
"@cloudflare/workers-types": "^4.20251205.0",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.2",
"@semantic-release/npm": "13.1.3",
"@semantic-release/release-notes-generator": "14.1.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^24.10.1",
"babel-preset-solid": "1.9.10",
"bun-types": "^1.3.5",
"commitlint": "^20.2.0",
"lefthook": "^2.0.8",
"rimraf": "^6.1.2",
"semantic-release": "25.0.2",
"tsup": "^8.5.0",
"tsx": "4.21.0",
"turbo": "^2.6.3",
"typescript": "^5.9.3",
"vitest": "3.2.4"
},
"name": "@ecomet/flare",
"packageManager": "bun@1.3.5",
"private": true,
"scripts": {
"app:cloudflare-worker:dev": "turbo run @ecomet/flare-cloudflare-worker#dev",
"app:cloudflare-worker:test": "turbo run @ecomet/flare-cloudflare-worker#test",
"check": "biome check",
"check:fix": "biome check --fix",
"claude": "claude --dangerously-skip-permissions",
"claude:clear": "bun run scripts/claude-clear.ts",
"claude:continue": "claude --dangerously-skip-permissions -c",
"claude:resume": "claude --dangerously-skip-permissions -r",
"clear": "bun run scripts/clear-all.ts",
"clear:hard": "bun run scripts/clear-all-hard.ts",
"clear:soft": "bun run scripts/clear-all-soft.ts",
"clear:system": "rm -rf ~/.bun/install/cache",
"gen:vscode-tasks": "bun run scripts/generate-vscode-tasks.ts",
"pkg:cloudflare:build": "turbo run @ecomet/flare-cloudflare#build",
"pkg:cloudflare:test": "turbo run @ecomet/flare-cloudflare#test",
"pkg:flare-testing:build": "turbo run @ecomet/flare-testing#build",
"pkg:flare:build": "turbo run @ecomet/flare#build",
"pkg:flare:test": "turbo run @ecomet/flare#test",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"test:integration": "turbo run test:integration",
"test:unit": "turbo run test:unit",
"type:check": "turbo run type:check"
},
"sideEffects": false,
"type": "module",
"version": "0.0.0",
"workspaces": {
"catalog": {
"@cloudflare/vite-plugin": "^1.3.1",
"@cloudflare/vitest-pool-workers": "^0.10.14",
"@cloudflare/workers-types": "^4.20251205.0",
"@formatjs/intl-localematcher": "^0.6.1",
"@playwright/test": "^1.52.0",
"@solidjs/testing-library": "^0.8.10",
"@tanstack/query-core": "^5.75.0",
"@types/negotiator": "^0.6.4",
"@vitest/browser": "^3.2.4",
"esbuild-plugin-solid": "^0.6.0",
"isbot": "^5.1.27",
"negotiator": "^1.0.0",
"schema-dts": "^1.1.5",
"solid-js": "^1.9.7",
"tailwindcss": "^4.1.10",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.11.6",
"vitest": "^3.2.4"
},
"packages": [
"src/apps/*",
"src/packages/*"
]
}
}