-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.17 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
{
"name": "@spec2tools/core",
"version": "0.2.1",
"description": "Core utilities for OpenAPI parsing and authentication",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"openapi",
"parser",
"authentication",
"tools"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CahidArda/spec2tools.git",
"directory": "packages/core"
},
"dependencies": {
"@pydantic/monty": "^0.0.7",
"ai": "^6.0.68",
"express": "^5.0.0",
"open": "^10.1.0",
"yaml": "^2.5.0",
"zod-to-json-schema": "^3.24.0"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"typescript": "^5.6.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}