-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 878 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 878 Bytes
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
{
"name": "jen",
"type": "module",
"packageManager": "bun@1.3.10",
"private": true,
"author": "oopsio",
"license": "MIT",
"workspaces": [
"packages/*",
"crates/*"
],
"scripts": {
"build": "turbo run build",
"format": "turbo run format",
"lint": "turbo run lint",
"format:base": "prettier --write .",
"lint:base": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "9",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"turbo": "^2.8.20",
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"@swc/html": "^1.15.18",
"@types/bun": "^1.3.11",
"@types/deno": "^2.5.0",
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"dotenv-expand": "^12.0.3",
"esbuild": "^0.27.4",
"preact": "^10.29.0",
"vite": "^8.0.1",
"vite-plugin-checker": "^0.12.0"
}
}