-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.59 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.59 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
47
48
49
50
51
{
"name": "konbini",
"version": "0.0.1",
"private": true,
"description": "Your convenience store.",
"contributors": [
{
"name": "ZakaHaceCosas",
"url": "https://zakahacecosas.github.io/"
}
],
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"@zakahacecosas/number-utils": "npm:@jsr/zakahacecosas__number-utils@latest",
"@zhc.js/string-utils": "latest",
"typescript": "latest",
"@types/bun": "1.3.1"
}
},
"type": "module",
"scripts": {
"pretty": "prettier --w .",
"lint": "oxlint . --fix",
"precommit": "bun run pretty && bun run lint",
"run:cli": "bun packages/client/src/index.ts",
"run:upd": "bun packages/update/src/index.ts",
"run:web": "cd packages/gui && bun run dev",
"bld": "echo 'Building the CLI...' && bun run bld:cli && echo 'Building the GUI...' && bun run bld:web && echo 'Built it all!'",
"bld:cli": "cd packages/client && bun build.ts",
"bld:web": "cd packages/gui && bun run build",
"launch:web": "bun run bld:web && cd packages/gui && bun run prod",
"launch:api": "cd packages/data && vercel --prod"
},
"dependencies": {
"@zhc.js/string-utils": "^4.1.0",
"vercel": "^48.12.1"
},
"devDependencies": {
"eslint": "^9.39.4",
"oxlint": "^1.62.0",
"prettier": "^3.8.3"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"@vercel/speed-insights",
"esbuild"
]
}