-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.1 KB
/
package.json
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
{
"name": "goodidea",
"version": "0.1.0-beta",
"description": "Feedback and task management",
"main": "index.js",
"scripts": {
"build:css": "npx tailwindcss -i ./src/input.css -o ./static/main.css",
"build:js": "esbuild src/*.js --bundle --minify --sourcemap --target=chrome95,firefox97,safari15 --outdir=static",
"build:js:prod": "esbuild src/*.js --bundle --minify --target=chrome95,firefox97,safari15 --outdir=static",
"build": "npm run build:css && npm run build:js",
"build:prod": "npm run build:css && npm run build:js:prod",
"lint": "npx @biomejs/biome lint ./src/*.js",
"fix": "npx @biomejs/biome check --write ./src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lwileczek/goodidea.git"
},
"keywords": [
"feedback",
"tasks",
"management"
],
"author": "lwileczek",
"license": "BSD3",
"bugs": {
"url": "https://github.com/lwileczek/goodidea/issues"
},
"homepage": "https://github.com/lwileczek/goodidea",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"esbuild": "0.23.0",
"tailwindcss": "^3.3.5"
}
}