-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "@devix-tecnologia/directus2ts",
"version": "1.0.4",
"description": "Create typescript types from any directus api",
"main": "dist/index.js",
"bin": {
"directus2ts": "./dist/cli.js"
},
"type": "module",
"types": "./dist/types/*.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/devix-tecnologia/directus2ts"
},
"scripts": {
"test-cli": "tsx src/cli.ts",
"clean": "rm -rf ./dist",
"build": "npm run clean && npm run build:tsc && chmod u+x ./dist/cli.js",
"build:tsc": "tsc -p ./tsconfig.json",
"prepack": "npm run build",
"semantic-release": "semantic-release"
},
"author": "Roberto Seba@Devix 2023",
"license": "MIT",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@types/js-yaml": "^4.0.1",
"@types/node": "^18.13.0",
"@types/node-fetch": "^2.5.10",
"@types/yargs": "^17.0.0",
"semantic-release": "^20.1.0",
"tsx": "^3.12.7",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.2",
"change-case": "^4.1.2",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^10.1.4",
"node-fetch": "^2.6.1",
"openapi-typescript": "^6.2.4",
"yargs": "^17.6.2",
"zod": "^3.20.6"
},
"publishConfig": {
"access": "public"
}
}