forked from vltpkg/vltpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@vltpkg/git",
"description": "a util for spawning git from npm CLI contexts",
"version": "1.0.0-rc.18",
"repository": {
"type": "git",
"url": "git+https://github.com/vltpkg/vltpkg.git",
"directory": "src/git"
},
"author": "vlt technology inc. <support@vlt.sh> (http://vlt.sh)",
"dependencies": {
"@types/promise-retry": "^1.1.6",
"@vltpkg/error-cause": "workspace:*",
"@vltpkg/git-scp-url": "workspace:*",
"@vltpkg/pick-manifest": "workspace:*",
"@vltpkg/promise-spawn": "workspace:*",
"@vltpkg/semver": "workspace:*",
"@vltpkg/spec": "workspace:*",
"@vltpkg/which": "workspace:*",
"lru-cache": "catalog:",
"promise-retry": "^2.0.1",
"retry": "^0.13.1"
},
"devDependencies": {
"@eslint/js": "catalog:",
"@types/node": "catalog:",
"@types/retry": "^0.12.5",
"@vltpkg/types": "workspace:*",
"eslint": "catalog:",
"prettier": "catalog:",
"tap": "catalog:",
"typedoc": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:"
},
"license": "ISC",
"engines": {
"node": ">=22.9.0"
},
"scripts": {
"format": "prettier --write . --log-level warn --ignore-path ../../.prettierignore --cache",
"format:check": "prettier --check . --ignore-path ../../.prettierignore --cache",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"prepack": "tsc -p tsconfig.publish.json && ../../scripts/update-dist-exports.ts",
"snap": "tap",
"test": "tap",
"posttest": "tsc --noEmit",
"typecheck": "tsc --noEmit"
},
"tap": {
"extends": "../../tap-config.yaml"
},
"prettier": "../../.prettierrc.js",
"module": "./src/index.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"default": "./src/index.ts"
}
}
},
"files": [
"dist"
]
}