-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "editor",
"type": "module",
"private": true,
"imports": {
"#types": "./src/types/index.ts",
"#styles": "./src/styles/global.css",
"#layout": "./src/layouts/Layout.astro",
"#app": "./src/components/App.tsx",
"#hooks/*": "./src/hooks/*.ts",
"#lib/*": "./src/lib/*.ts"
},
"scripts": {
"test": "bun test",
"lint": "biome check",
"format": "biome check --fix --linter-enabled=false",
"build": "astro build",
"deploy": "wrangler deploy",
"dev": "astro dev"
},
"dependencies": {
"@tiptap/core": "3.22.5",
"@tiptap/extension-highlight": "3.22.5",
"@tiptap/pm": "3.22.5",
"@tiptap/starter-kit": "3.22.5",
"astro": "6.3.0",
"solid-js": "1.9.12",
"tailwindcss": "4.2.4"
},
"devDependencies": {
"@astrojs/solid-js": "6.0.1",
"@biomejs/biome": "2.4.14",
"@gameroman/config": "0.1.0",
"@tailwindcss/vite": "4.2.4",
"@types/bun": "1.3.13",
"typescript": "6.0.3",
"wrangler": "4.88.0"
},
"overrides": {
"@babel/helper-module-imports": "7.28.6",
"esbuild": "0.28.0",
"is-docker": "4.0.0",
"semver": "7.7.4",
"unstorage": "2.0.0-alpha.7"
}
}