-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "@ash0080/hasura-sdk",
"version": "1.1.0",
"description": "Hasura Healthz/Schema/Metadata/PGdump API SDK. Written in TypeScript, Carefully tested and fixed some official bugs",
"main": "build/main",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/ash0080/hasura-sdk",
"license": "MIT",
"keywords": [
"hasura",
"typescript",
"metadata",
"healthz",
"pgdump",
"schema",
"sdk",
"query",
"graphql"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "env $(cat .env) tap --ts -j1 -R=specy -o report.tap -w test/**/*.ts",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"prebuild": "del-cli dist",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
"start": "node dist/index.js",
"prepublishOnly": "pnpm build --enable-pre-post-scripts"
},
"keywords": [],
"author": "",
"dependencies": {
"@types/node": "^17.0.4",
"phin": "^3.6.1",
"serialize-error": "8.1.0",
"type-fest": "^2.8.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"console-table-printer": "^2.10.0",
"del-cli": "^4.0.1",
"eslint": "^8.5.0",
"knex": "^0.95.15",
"msw": "^0.36.3",
"pino": "^7.6.1",
"pino-pretty": "^7.3.0",
"tap": "^15.1.5",
"ts-node": "^10.1.0",
"typescript": "^4.5.4"
}
}