-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.55 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "compeller",
"description": "A strong typescript binding for your OpenAPI Schema that doesn't need generation.",
"version": "0.0.1-alpha.6",
"author": "simonreilly",
"homepage": "https://github.com/simonireilly/compeller",
"repository": {
"url": "https://github.com/simonireilly/compeller"
},
"bin": {
"compeller": "./dist/bin.js"
},
"dependencies": {
"ajv": "^8.9.0",
"hygen": "^6.1.0",
"json-schema-to-ts": "^1.6.5",
"openapi3-ts": "^2.0.1"
},
"devDependencies": {
"@swc/core": "^1.2.133",
"@swc/jest": "^0.2.17",
"@tsconfig/node14": "^1.0.1",
"@types/aws-lambda": "^8.10.92",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.12",
"embedme": "^1.22.0",
"husky": "^7.0.0",
"jest": "^27.4.7",
"release-it": "^14.12.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"keywords": [
"openapi",
"typescript",
"schema",
"json"
],
"engines": {
"node": ">= 12"
},
"license": "ISC",
"main": "dist/index.js",
"scripts": {
"typecheck": "tsc",
"build": "tsc --project tsconfig.production.json",
"clean": "rimraf ./dist",
"embed": "embedme ./README.md",
"example": "hygen compeller new --directory example",
"prepack": "yarn clean && yarn build",
"prepare": "husky install",
"pub:canary": "release-it --preRelease=alpha --npm.tag=alpha",
"pub:main": "release-it patch",
"release": "release-it",
"test": "jest"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}