-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "abstand",
"private": true,
"description": "",
"keywords": [],
"homepage": "https://abstand.app/?utm_source=github",
"bugs": {
"url": "https://github.com/builder-group/abstand/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/builder-group/abstand.git"
},
"license": "AGPL-3.0-only",
"author": "@bennobuilder",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean --force && shx rm -rf .turbo && shx rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,cjs,mjs,md,mdx,json,css,html}\"",
"install:clean": "pnpm run clean && pnpm install && pnpm build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint --force -- --fix",
"test": "turbo run test",
"update:latest": "turbo run update:latest --force && pnpm update --latest && pnpm build"
},
"devDependencies": {
"@blgc/config": "^0.1.0",
"eslint": "^10.4.1",
"prettier": "^3.8.3",
"shx": "^0.4.0",
"turbo": "^2.9.16",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"packageManager": "pnpm@11.3.0",
"engines": {
"node": ">=24"
}
}