-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "@omnivore-app/api",
"version": "1.0.4",
"description": "Omnivore API Client Library for Node.js",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/src"
],
"keywords": [
"omnivore",
"api",
"client",
"nodejs"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omnivore-app/omnivore-api.git"
},
"author": "Omnivore",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/omnivore-app/omnivore-api/issues"
},
"homepage": "https://github.com/omnivore-app/omnivore-api#readme",
"dependencies": {
"@urql/core": "^4.3.0",
"gql.tada": "^1.3.1"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "5.3.3"
},
"volta": {
"node": "18.18.0",
"yarn": "1.22.19"
}
}