-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "npmx-language-core",
"type": "module",
"version": "0.7.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/npmx-dev/vscode-npmx.git",
"directory": "packages/language-core"
},
"sideEffects": false,
"exports": {
"./api/package": "./dist/api/package.js",
"./api/replacement": "./dist/api/replacement.js",
"./api/vulnerability": "./dist/api/vulnerability.js",
"./constants": "./dist/constants.js",
"./extractors": "./dist/extractors/index.js",
"./links": "./dist/links.js",
"./types": "./dist/types.js",
"./utils": "./dist/utils/index.js",
"./workspace": "./dist/workspace.js"
},
"files": [
"dist/**/*"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown"
},
"dependencies": {
"ocache": "catalog:inline",
"ofetch": "catalog:inline",
"semver": "catalog:inline"
},
"devDependencies": {
"fast-npm-meta": "catalog:inline",
"jsonc-parser": "catalog:inline",
"module-replacements": "catalog:test",
"path-browserify": "catalog:inline",
"yaml": "catalog:inline"
},
"inlinedDependencies": {
"fast-npm-meta": "1.5.0",
"jsonc-parser": "3.3.1",
"module-replacements": "2.11.0",
"path-browserify": "1.0.1",
"yaml": "2.8.3"
}
}