-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.68 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
{
"name": "gau-monorepo",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "bun@1.3.5",
"scripts": {
"build": "bun --bun --cwd packages/gau tsup",
"dev": "bun --bun --cwd packages/gau tsup --watch",
"lint": "bun --bun eslint . --fix",
"lint:test": "eslint coverage.json --fix",
"check": "cd packages/gau && bun run check",
"check:test": "cd packages/gau && bun run check:test",
"test": "vitest --project fast",
"test:pg": "vitest --project pg",
"test:all": "vitest && bun run lint:test",
"test:ui": "vitest --project fast --ui",
"update": "taze latest -wr",
"clean": "bun --bun scripts/clean.ts",
"release": "bun node_modules/@rttnd/release/dist/cli.js"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.1",
"@rttnd/release": "^0.1.1",
"@sveltejs/kit": "^2.70.2",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@types/bun": "^1.3.5",
"@typescript/native-preview": "^7.0.0-dev.20260204.1",
"@unocss/eslint-plugin": "^66.5.10",
"@unocss/reset": "^66.5.10",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-format": "^1.1.0",
"eslint-plugin-solid": "^0.14.5",
"eslint-plugin-svelte": "^3.13.1",
"prettier-plugin-astro": "^0.14.1",
"svelte": "^5.46.4",
"taze": "^19.9.2",
"terser": "^5.44.1",
"tsup": "^8.5.1",
"unbuild": "^3.6.1",
"unocss": "^66.5.10",
"vitest": "^4.1.10",
"wrangler": "^4.56.0"
},
"workspaces": [
"packages/*"
],
"trustedDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"sharp",
"workerd"
]
}