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
87 lines (87 loc) · 2.39 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.39 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@vltpkg/server",
"description": "The server backend that powers the vlt gui",
"version": "1.0.0-rc.18",
"repository": {
"type": "git",
"url": "git+https://github.com/vltpkg/vltpkg.git",
"directory": "src/server"
},
"author": "vlt technology inc. <support@vlt.sh> (http://vlt.sh)",
"dependencies": {
"@vltpkg/cli-sdk": "workspace:*",
"@vltpkg/config": "workspace:*",
"@vltpkg/dep-id": "workspace:*",
"@vltpkg/error-cause": "workspace:*",
"@vltpkg/git": "workspace:*",
"@vltpkg/graph": "workspace:*",
"@vltpkg/gui": "workspace:*",
"@vltpkg/init": "workspace:*",
"@vltpkg/package-json": "workspace:*",
"@vltpkg/security-archive": "workspace:*",
"@vltpkg/spec": "workspace:*",
"@vltpkg/types": "workspace:*",
"@vltpkg/vlt-json": "workspace:*",
"mime-types": "^3.0.2",
"package-json-from-dist": "catalog:",
"path-scurry": "catalog:",
"promise-call-limit": "catalog:",
"resolve-import": "^2.1.1",
"serve-handler": "^6.1.6"
},
"devDependencies": {
"@eslint/js": "catalog:",
"@types/mime-types": "^3.0.1",
"@types/node": "catalog:",
"@types/serve-handler": "^6.1.4",
"@vltpkg/package-info": "workspace:*",
"eslint": "catalog:",
"prettier": "catalog:",
"tap": "catalog:",
"typedoc": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:"
},
"license": "BSD-2-Clause-Patent",
"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"
}
},
"./dashboard": {
"import": {
"default": "./src/dashboard.ts"
}
},
"./project-tools": {
"import": {
"default": "./src/project-tools.ts"
}
}
},
"files": [
"dist"
]
}