-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.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
{
"name": "@glideapps/tables",
"version": "1.0.12",
"description": "Client for Glide API",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "tsc && tsc --build tsconfig.cjs.json && esbuild src/client-generator/bin.ts --bundle --platform=node --outfile=dist/client-generator.js",
"client": "tsx src/client-generator/bin.ts",
"test": "jest"
},
"author": "typeguard, Inc.",
"license": "MIT",
"files": [
"dist/",
"README.md"
],
"bin": "dist/client-generator.js",
"devDependencies": {
"@swc/core": "^1.3.44",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.202",
"@types/prompt-sync": "^4.2.3",
"dotenv": "^16.3.1",
"esbuild": "^0.19.7",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"semver": "^7.3.8",
"shelljs": "^0.8.5",
"ts-jest": "^29.0.5",
"tsx": "^3.12.6"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"lodash": "^4.17.21",
"prompt-sync": "^4.2.0"
}
}