-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.36 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": "galpon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "tailwindcss -i ./static/styles/tailwind.css -o ./static/styles/build.css --minify",
"dev:css": "tailwindcss -i ./static/styles/tailwind.css -o ./static/styles/build.css --watch",
"lint:js": "eslint . --ext .js,.mjs --max-warnings=0",
"fmt:js": "prettier \"**/*.{js,mjs,json,md,css}\" --write",
"knip": "knip",
"build:js": "esbuild static/js/main.js --bundle --outfile=static/js/bundle.js --minify",
"dev:js": "esbuild static/js/main.js --bundle --outfile=static/js/bundle.js --watch"
},
"knip": {
"ignore": [
"static/js/bundle.js",
"static/js/upload_panel.js"
],
"ignoreDependencies": [
"tailwindcss"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.10.0",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@tailwindcss/cli": "^4.1.11",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.3.0",
"knip": "^5.62.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11"
},
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.108",
"alpinejs": "^3.14.9",
"esbuild": "^0.25.9",
"lucide": "^0.542.0"
}
}