forked from dohomi/storyblok-generate-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "storyblok-generate-ts",
"version": "1.15.0",
"description": "Generates TypeScript types based on component file",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dohomi/storyblok-generate-ts.git"
},
"bugs": {
"url": "https://github.com/dohomi/storyblok-generate-ts/issues"
},
"scripts": {
"test": "jest",
"build": "tsup src/index.ts src/cli.ts --dts",
"lint": "yarn eslint src/* --fix"
},
"author": "Dominic Garms",
"license": "ISC",
"dependencies": {
"camelcase": "^6.3.0",
"json-schema-to-typescript": "^11.0.1",
"ts-command-line-args": "^2.3.1",
"tsup": "^6.4.0"
},
"devDependencies": {
"@jest/globals": "^29.4.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"typescript": "^4.8.4"
},
"bin": "dist/cli.js",
"typings": "dist/index.d.ts"
}