-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.13 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.13 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@tx2z/dev-process-runner",
"version": "1.2.0",
"description": "Dev Process Runner - A TUI tool to manage multiple development services",
"type": "module",
"main": "dist/index.js",
"bin": {
"dpr": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/index.tsx",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest --coverage",
"validate": "npm run typecheck && npm run lint && npm run format:check && npm run test:run",
"prepublishOnly": "npm run validate && npm run build",
"build:exe": "bun build src/index.tsx --compile --outfile dpr",
"release": "./scripts/release.sh"
},
"keywords": [
"cli",
"tui",
"process-manager",
"development",
"services"
],
"author": "tx2z",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tx2z/dpr.git"
},
"homepage": "https://github.com/tx2z/dpr#readme",
"bugs": {
"url": "https://github.com/tx2z/dpr/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"ink": "^6.6.0",
"js-yaml": "^4.1.0",
"react": "^19.2.3",
"zod": "^3.25.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.0",
"@types/react": "^19.2.7",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^59.0.1",
"ink-testing-library": "^4.0.0",
"prettier": "^3.7.4",
"react-devtools-core": "^6.1.5",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.2.4"
}
}