-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"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.0",
"@tiptap/extension-highlight": "^3.22.0",
"@tiptap/pm": "^3.22.0",
"@tiptap/starter-kit": "^3.22.0",
"astro": "^6.1.3",
"solid-js": "^1.9.12",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@astrojs/solid-js": "^6.0.1",
"@biomejs/biome": "2.4.10",
"@gameroman/config": "^0.0.6",
"@tailwindcss/vite": "^4.2.2",
"typescript": "^6.0.2",
"wrangler": "^4.79.0"
},
"overrides": {
"esbuild": "^0.27.3"
}
}