-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "@nitestack/project-manager",
"version": "0.1.4",
"description": "Project Manager is a CLI tool for managing projects.",
"repository": {
"type": "git",
"url": "https://github.com/nitestack/project-manager"
},
"license": "Apache-2.0",
"author": "Nitestack",
"type": "module",
"exports": "./dist/index.js",
"bin": {
"pm": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json",
"pnpm-lock.yaml"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "sort-package-json && prettier --write .",
"start": "node dist/index.js",
"typecheck": "tsc",
"publish": "pnpm build && npm publish --access public"
},
"dependencies": {
"@clack/core": "^0.3.3",
"@clack/prompts": "^0.7.0",
"@commander-js/extra-typings": "^11.1.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"fzf": "^0.5.2",
"is-unicode-supported": "^2.0.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.5",
"prettier": "^3.1.1",
"sort-package-json": "^2.6.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}