-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 809 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 809 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
{
"name": "limitra",
"version": "1.2.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}\"",
"lint": "eslint \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"build": "npm run check && node esbuild.config.mjs --prod",
"dev": "node esbuild.config.mjs --watch",
"test": "vitest"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chrome": "^0.1.40",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"prettier": "^3.8.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4"
},
"dependencies": {
"globals": "^17.4.0"
}
}