-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 831 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 831 Bytes
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
{
"name": "pm",
"version": "1.0.3",
"description": "A simplified package manager wrapper",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"bin": {
"pmi": "bin/pmi.mjs",
"pmuni": "bin/pmuni.mjs",
"pmu": "bin/pmu.mjs",
"pmx": "bin/pmx.mjs",
"pmr": "bin/pmr.mjs",
"pma": "bin/pma.mjs"
},
"author": "unickhow <unickhow@gmail.com>",
"scripts": {
"build": "unbuild"
},
"dependencies": {
"chalk": "^5.2.0",
"inquirer": "^9.2.7"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^14.14.31",
"typescript": "^4.5.4",
"unbuild": "^1.0.0"
}
}