-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "xmanscript",
"version": "2.2.0",
"description": "CLI for xmanscript tools",
"type": "module",
"module": "es2020",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"semantic-release": "semantic-release",
"typecheck": "tsc --noEmit",
"start:dev": "cross-env node dist/index.js",
"start": "node dist/index.js"
},
"exports": "./dist/index.js",
"bin": {
"xmanscript-test": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laxmanpokhrel/xmanscript-cli.git"
},
"keywords": [
"cli",
"tools",
"xmanscript"
],
"author": "laxmanpokhrel",
"license": "MIT",
"bugs": {
"url": "https://github.com/laxmanpokhrel/xmanscript-cli/issues"
},
"homepage": "https://github.com/laxmanpokhrel/xmanscript-cli#readme",
"dependencies": {
"@types/inquirer": "^9.0.7",
"chalk": "^5.3.0",
"child-process": "^1.0.2",
"cross-env": "^7.0.3",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"util": "^0.12.5"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}