-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "@oak-digital/types-4-strapi-2",
"version": "1.0.6",
"description": "Typescript interface generator for Strapi 4 models",
"bin": {
"t4s": "./bin/index.js"
},
"scripts": {
"build": "rimraf lib && tsc -p .",
"testtypes": "node ./bin/index.js",
"lint": "eslint src/",
"prettier": "prettier --write \"src/**/*.ts\"",
"t4s": "node ./bin/index.js",
"testdev": "ts-node ./src/index.ts",
"release": "bumpp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Oak-Digital/types-4-strapi-2.git"
},
"keywords": [
"strapi",
"typescript",
"types",
"generator"
],
"author": "Oak digital",
"license": "MIT",
"bugs": {
"url": "https://github.com/Oak-Digital/types-4-strapi-2/issues"
},
"homepage": "https://github.com/Oak-Digital/types-4-strapi-2",
"devDependencies": {
"@types/node": "^18.7.2",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"bumpp": "^9.3.0",
"eslint": "^8.22.0",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"dependencies": {
"change-case": "^4.1.2",
"commander": "^9.4.0",
"prettier": "^2.7.1",
"zod": "^3.21.4"
}
}