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
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 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
{
"name": "@vltpkg/init",
"description": "vlt project intialization logic",
"version": "1.0.0-rc.18",
"repository": {
"type": "git",
"url": "git+https://github.com/vltpkg/vltpkg.git",
"directory": "src/init"
},
"author": "vlt technology inc. <support@vlt.sh> (http://vlt.sh)",
"dependencies": {
"@vltpkg/git": "workspace:*",
"@vltpkg/package-json": "workspace:*",
"@vltpkg/registry-client": "workspace:*",
"@vltpkg/types": "workspace:*"
},
"devDependencies": {
"@eslint/js": "catalog:",
"@types/node": "catalog:",
"eslint": "catalog:",
"prettier": "catalog:",
"tap": "catalog:",
"typedoc": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:"
},
"license": "BSD-2-Clause-Patent",
"engines": {
"node": ">=22.22.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"
]
}