forked from npm/cmd-shim
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 KB
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
{
"name": "@zkochan/cmd-shim",
"version": "9.0.2",
"description": "Used in pnpm for command line application support",
"type": "module",
"author": {
"name": "Zoltan Kochan",
"email": "zoltan.kochan@gmail.com",
"url": "http://kochan.io"
},
"exports": {
".": "./index.js"
},
"scripts": {
"clean": "tsc --build --clean",
"build": "tsc --build --verbose --listEmittedFiles",
"test:unit": "node --test test/test.js test/e2e.test.js",
"test": "pnpm run build && pnpm run test:unit",
"prepublishOnly": "pnpm run build"
},
"files": [
"index.d.ts",
"index.d.ts.map",
"index.js",
"index.js.map"
],
"repository": {
"type": "git",
"url": "https://github.com/pnpm/cmd-shim.git"
},
"license": "BSD-2-Clause",
"dependencies": {
"cmd-extension": "^1.0.2",
"graceful-fs": "^4.2.11"
},
"devDependencies": {
"@types/graceful-fs": "^4.1.9",
"@types/node": "^18.19.87",
"memfs": "^3.5.3",
"tempy": "^1.0.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=22.13"
},
"packageManager": "pnpm@11.0.2"
}