-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.3 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.3 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "regxa",
"version": "0.1.6",
"description": "Universal package registry client. Query npm, PyPI, crates.io, RubyGems, Packagist and more with a single PURL-native API.",
"keywords": [
"crates",
"metadata",
"npm",
"package-registry",
"packagist",
"purl",
"pypi",
"rubygems",
"universal"
],
"homepage": "https://github.com/oritwoen/regxa#readme",
"bugs": "https://github.com/oritwoen/regxa/issues",
"license": "MIT",
"author": "oritwoen (https://github.com/oritwoen)",
"repository": {
"type": "git",
"url": "git+https://github.com/oritwoen/regxa.git"
},
"bin": {
"regxa": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": [
"./src/index.ts",
"./src/registries/index.ts",
"./dist/index.mjs",
"./dist/registries/index.mjs"
],
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./ai": {
"types": "./dist/ai.d.mts",
"import": "./dist/ai.mjs"
},
"./registries": {
"types": "./dist/registries/index.d.mts",
"import": "./dist/registries/index.mjs"
},
"./cache": {
"types": "./dist/cache/index.d.mts",
"import": "./dist/cache/index.mjs"
}
},
"scripts": {
"build": "obuild",
"dev:prepare": "obuild --stub",
"fmt": "oxlint . --fix && oxfmt .",
"lint": "oxlint . && oxfmt --check .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"prepack": "pnpm run build",
"release": "pnpm test:run && pnpm build && changelogen --release --push"
},
"dependencies": {
"citty": "^0.2.1",
"consola": "^3.4.2",
"ofetch": "^1.5.1",
"unstorage": "^1.17.4"
},
"devDependencies": {
"@types/node": "^25.3.0",
"ai": "^6.0.116",
"changelogen": "^0.6.2",
"obuild": "^0.4.31",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"typescript": "^5.8.3",
"vitest": "^4.0.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"ai": "^6.0.116",
"zod": "^4.3.6"
},
"peerDependenciesMeta": {
"ai": {
"optional": true
},
"zod": {
"optional": true
}
},
"engines": {
"node": ">=22.6.0"
},
"packageManager": "[email protected]"
}