-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.14 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.14 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
{
"name": "limitra",
"version": "1.1.0",
"description": "If willpower worked, you wouldn't be here. Set hard limits. Limitra enforces them.",
"type": "module",
"scripts": {
"format": "prettier --write \"src/**/*.{ts,js,json,html}\" \"docs/**/*.html\"",
"lint": "eslint \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"build:css": "tailwindcss -i ./docs/tailwind-input.css -o ./docs/tailwind.css --minify",
"watch:css": "tailwindcss -i ./docs/tailwind-input.css -o ./docs/tailwind.css --watch",
"build": "npm run check && npm run build:css && node esbuild.config.mjs --prod",
"dev": "concurrently \"npm run watch:css\" \"node esbuild.config.mjs --watch\"",
"test": "vitest"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/cli": "^4.2.4",
"@types/chrome": "^0.1.40",
"concurrently": "^9.2.1",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"prettier": "^3.8.2",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4"
},
"dependencies": {
"globals": "^17.4.0"
}
}