forked from jkcorrea/airtable-typegen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.16 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
{
"name": "airtable-typegen",
"version": "0.3.4",
"description": "Generate TypeScript & Zod types from your Airtable bases",
"author": "Jake Correa @jkcorrea",
"bin": {
"airtable-typegen": "./bin/run"
},
"homepage": "https://github.com/jkcorrea/airtable-typegen",
"license": "MIT",
"main": "dist/index.js",
"repository": "jkcorrea/airtable-typegen",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^1.24.0",
"@types/fs-extra": "^11.0.1",
"dotenv": "^16.0.3",
"fs-extra": "^11.1.0",
"change-case": "^4.1.2",
"ts-morph": "^17.0.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@oclif/test": "^2.2.19",
"@types/chai": "^4.3.4",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/pascal-case": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"airtable": "^0.11.6",
"chai": "^4.3.7",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwindcss": "^3.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.1",
"nock": "^13.3.0",
"oclif": "^3",
"prettier": "^2.8.1",
"shx": "^0.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"oclif": {
"default": ".",
"commands": "./dist/commands"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "jest",
"typecheck": "tsc --noEmit",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/jkcorrea/airtable-typegen/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts",
"packageManager": "[email protected]"
}