-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.71 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.71 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@thetinkerinc/sprout",
"version": "0.5.1",
"license": "MIT",
"type": "module",
"keywords": [
"svelte"
],
"scripts": {
"dev": "vite dev",
"build": "run-s build:package build:lint",
"build:package": "vite build && svelte-kit sync && svelte-package",
"build:lint": "publint",
"preview": "vite preview",
"upload": "npm publish --access=public",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "eslint .",
"cleanup": "run-s format lint check",
"release": "run-s build upload",
"cf-typegen": "wrangler types src/worker-configuration.d.ts"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./db": {
"types": "./dist/db/index.d.ts",
"svelte": "./dist/db/index.js"
},
"./commanders": {
"types": "./dist/commanders/index.d.ts",
"svelte": "./dist/commanders/index.js"
},
"./auth": {
"types": "./dist/auth/index.d.ts",
"svelte": "./dist/auth/index.js"
},
"./navigation": {
"types": "./dist/navigation/index.d.ts",
"svelte": "./dist/navigation/index.js"
},
"./events": {
"types": "./dist/events/index.d.ts",
"import": "./dist/events/index.js"
},
"./forms": {
"types": "./dist/forms/index.d.ts",
"import": "./dist/forms/index.js"
},
"./vite": {
"types": "./dist/vite/index.d.ts",
"import": "./dist/vite/index.js"
}
},
"peerDependencies": {
"svelte": "^5.0.0",
"@sveltejs/kit": "^2.49.2"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@inlang/paraglide-js": "^2.13.0",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/kit": "^2.53.3",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.3.2",
"@types/pg": "^8.16.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^17.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"publint": "^0.3.17",
"svelte": "^5.53.5",
"svelte-check": "^4.4.4",
"svelte-clerk": "^0.20.5",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1"
},
"dependencies": {
"@thetinkerinc/commander": "^0.2.0",
"kysely": "^0.28.11",
"pg": "^8.19.0"
}
}