-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "@rye-api/rye-sdk",
"version": "1.4.2",
"description": "SDK for the Rye API",
"repository": {
"type": "git",
"url": "https://github.com/rye-com/rye-sdk"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"dist/**"
],
"scripts": {
"build": "tsc",
"check-format": "prettier --check .",
"codegen": "graphql-codegen",
"format": "prettier --write .",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"postbuild": "ts-node ./scripts/postbuild.ts",
"test": "vitest run"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/client-preset": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"graphql": "^16.7.1",
"prettier": "^3.2.5",
"ts-morph": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.1.6",
"vitest": "^1.4.0"
},
"dependencies": {
"@urql/core": "^4.3.0",
"@urql/exchange-retry": "^1.2.1"
}
}