-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 KB
/
package.json
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
{
"name": "@comet/dev-process-manager",
"packageManager": "[email protected]",
"license": "BSD-2-Clause",
"version": "2.7.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"dev-pm": "lib/index.js"
},
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "husky",
"lint": "run-p lint:eslint lint:tsc",
"lint:eslint": "eslint src/",
"lint:tsc": "tsc",
"build": "tsc",
"start": "tsc --watch",
"build-and-publish": "yarn build && yarn changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivid-planet/dev-process-manager.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"author": "Vivid Planet Software GmbH <[email protected]> (https://www.vivid-planet.com/)",
"bugs": {
"url": "https://github.com/vivid-planet/dev-process-manager/issues"
},
"homepage": "https://github.com/vivid-planet/dev-process-manager#readme",
"dependencies": {
"cli-table3": "^0.6.5",
"colors": "^1.4.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"log-update": "^4.0.0",
"pidtree": "^0.6.0",
"pidusage": "^3.0.2",
"pretty-bytes": "^5.6.0",
"wait-on": "^7.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@comet/eslint-config": "^6.8.0",
"@types/node": "^20.14.11",
"@types/pidusage": "^2.0.5",
"@types/wait-on": "^5.3.4",
"eslint": "^8.19.0",
"husky": "^9.1.0",
"lint-staged": "^15.2.7",
"prettier": "^2.0.0",
"typescript": "^5.5.3",
"yarn-run-all": "^3.1.1"
},
"engines": {
"node": ">=14"
}
}