-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@cloudimpl-inc/cpm",
"version": "2.33.7",
"description": "CloudImpl Project Manager",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"cpm": "./dist/bin/cpm.sh",
"cpmjs": "./dist/bin/cpm.js"
},
"scripts": {
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"copy:resources": "cp -r ./src/resources ./dist/",
"copy:executable": "cp src/bin/cpm.sh ./dist/bin/",
"build": "tsup && npm run copy:executable && npm run copy:resources"
},
"keywords": [
"cli",
"npmtool",
"projectmanager"
],
"author": "Randil Fernando",
"license": "MIT",
"repository": "https://github.com/cloudimpl-inc/cpm",
"homepage": "https://github.com/cloudimpl-inc/cpm#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.28",
"tiny-glob": "^0.2.9",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
}
}