-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "devproc",
"version": "0.1.0",
"description": "Developer Process Manager - A terminal UI for managing local development environments",
"author": "Jordan Taylor",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/captjt/devproc.git"
},
"bugs": {
"url": "https://github.com/captjt/devproc/issues"
},
"homepage": "https://github.com/captjt/devproc#readme",
"keywords": [
"devproc",
"process-manager",
"tui",
"terminal",
"development",
"docker",
"cli",
"bun"
],
"module": "src/index.tsx",
"type": "module",
"bin": {
"devproc": "./src/index.tsx"
},
"scripts": {
"start": "bun run src/index.tsx",
"dev": "bun --hot run src/index.tsx",
"build": "bun run scripts/build.ts",
"build:all": "bun run scripts/build.ts --all",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:write": "prettier --write .",
"screenshot": "bun run scripts/screenshot.ts",
"screenshot:gif": "bun run scripts/screenshot.ts --gif",
"docs:dev": "cd docs && bun run dev",
"docs:build": "cd docs && bun run build",
"docs:preview": "cd docs && bun run preview"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/bun": "latest",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"prettier": "3.6.2",
"typescript-eslint": "^8.48.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.1.50",
"@opentui/solid": "^0.1.50",
"yaml": "^2.8.1",
"zod": "^4.1.13"
},
"prettier": {
"semi": false,
"printWidth": 120
}
}