-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "typeconv",
"version": "0.0.0-development",
"description": "Convert between JSON Schema, TypeScript, GraphQL and Open API",
"author": "Gustaf Räntilä",
"license": "MIT",
"bugs": {
"url": "https://github.com/grantila/typeconv/issues"
},
"homepage": "https://github.com/grantila/typeconv#readme",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"browser": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"directories": {},
"type": "module",
"sideEffects": "false",
"engines": {
"node": ">=14.13.1"
},
"files": [
"dist"
],
"bin": "dist/bin/typeconv.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.prod.json",
"dev": "ts-node-esm lib/bin/typeconv.ts",
"test": "CI=1 NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/grantila/typeconv"
},
"keywords": [
"convert",
"types",
"json",
"schema",
"typescript",
"graphql"
],
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@types/babel__code-frame": "^7.0.3",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.16.16",
"cz-conventional-changelog": "^3.3.0",
"execa": "^7.1.1",
"jest": "^29.5.0",
"rimraf": "^5.0.1",
"tempy": "^3.0.0",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"already": "^3.4.1",
"awesome-code-frame": "^1.1.0",
"chalk": "^5.2.0",
"core-types": "^3.1.0",
"core-types-graphql": "^3.0.0",
"core-types-json-schema": "^2.2.0",
"core-types-suretype": "^3.2.0",
"core-types-ts": "^4.1.0",
"globby": "^13.1.4",
"js-yaml": "^4.1.0",
"oppa": "^0.4.0",
"terminal-link": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}