-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 KB
/
package.json
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
{
"name": "openapi-formkit",
"version": "0.3.3",
"description": "Transform an OpenAPI document to a FormKit schema",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": {
"name": "Thibault Poisson",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/OrIOg/openapi-formkit/"
},
"license": "MIT",
"files": [
"./lib/**/*",
"./src/types/**/*"
],
"typings": "./lib/index.d.ts",
"scripts": {
"dev": "tsnd --respawn --files src/index.ts",
"test": "jest",
"build": "tsc",
"prebuild": "npm run test",
"postbuild": "cp -R ./src/types/ ./lib/",
"prepublishOnly": "npm run build"
},
"keywords": [
"OpenAPI",
"FormKit",
"Converter"
],
"devDependencies": {
"@formkit/core": "^1.0.0-beta.6",
"@types/jest": "^27.4.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.6.2"
},
"dependencies": {
"openapi-types": "^12.0.0",
"openapi3-ts": "^2.0.2",
"swagger-parser": "^10.0.3"
}
}