-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.59 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.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
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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "devports",
"version": "1.1.0",
"description": "Port allocation manager for multi-project development",
"type": "module",
"bin": {
"devports": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc && cp src/completion/*.sh dist/completion/",
"dev": "tsc --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run test && npm run build",
"lint": "eslint . --max-warnings 100 && tsc --noEmit && npm run lint:shell",
"lint:fix": "eslint . --fix",
"lint:shell": "shellcheck src/completion/bash.sh && zsh -n src/completion/zsh.sh",
"preuninstall": "node dist/cli.js completion zsh --uninstall > /dev/null 2>&1 || true && node dist/cli.js completion bash --uninstall > /dev/null 2>&1 || true"
},
"keywords": [
"ports",
"docker",
"development",
"devtools",
"postgres",
"port-management",
"cli",
"automation",
"worktree",
"multi-project"
],
"author": {
"name": "Ben Dechrai",
"email": "ben@dechrai.com",
"url": "https://bendechr.ai"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bendechrai/devports.git"
},
"bugs": {
"url": "https://github.com/bendechrai/devports/issues"
},
"homepage": "https://github.com/bendechrai/devports#readme",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"commander": "^12.1.0",
"glob": "^11.0.3",
"magic-string": "^0.30.21",
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^13.1.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/glob": "^8.1.0",
"@types/node": "^22.10.2",
"@types/proper-lockfile": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^4.0.10",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"semantic-release": "^25.0.2",
"shellcheck": "^4.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.47.0",
"vitest": "^4.0.9"
},
"engines": {
"node": ">=18"
}
}