forked from JacobLinCool/d1-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.77 KB
/
package.json
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
{
"name": "d1-manager",
"description": "D1 Manager is a web UI and API for Cloudflare D1, a serverless SQL database. It provides a user-friendly interface for managing databases, tables, and records, as well as an API for performing operations programmatically. D1 Manager simplifies database management, enabling users to focus on their data.",
"version": "0.0.0",
"type": "module",
"files": [
".svelte-kit/cloudflare"
],
"scripts": {
"prepare": "husky install && tsup src/cfai.ts -d cfai --format esm --minify",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --ignore-path .gitignore --check . && eslint .",
"format": "prettier --ignore-path .gitignore --write .",
"upload": "pnpm build && wrangler pages deploy --project-name d1-manager .svelte-kit/cloudflare",
"tail": "wrangler pages deployment tail --project-name d1-manager"
},
"devDependencies": {
"@ai-d/aid": "^0.1.5",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@cloudflare/ai": "^1.0.47",
"@cloudflare/workers-types": "^4.20240117.0",
"@iconify/svelte": "^3.1.6",
"@playwright/test": "^1.41.1",
"@sveltejs/adapter-cloudflare": "^4.1.0",
"@sveltejs/kit": "^2.4.3",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tailwindcss/typography": "^0.5.10",
"@types/debug": "^4.1.12",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.4.17",
"csv-parse": "^5.5.3",
"csv-stringify": "^6.4.5",
"daisyui": "^4.6.0",
"debug": "^4.3.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"openai": "^4.25.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"sql.js": "^1.10.2",
"svelte": "^4.2.9",
"svelte-check": "^3.6.3",
"svelte-i18n": "^4.0.0",
"tailwindcss": "^3.4.1",
"theme-change": "2.5.0",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^0.34.6",
"wrangler": "^3.24.0",
"zod": "^3.22.4"
},
"lint-staged": {
"*.{ts,js,json,yaml,yml,svelte,html,css}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/JacobLinCool/d1-manager.git"
},
"homepage": "https://github.com/JacobLinCool/d1-manager",
"bugs": {
"url": "https://github.com/JacobLinCool/d1-manager/issues"
},
"packageManager": "[email protected]"
}