-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "graphql-mobius",
"version": "0.1.13",
"description": "End-to-end type safe TypeScript GraphQL Client",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "[email protected]"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"bun": "./dist/index.js",
"node": "./dist/index.js",
"require": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"keywords": [
"elysia",
"graphql",
"mobius",
"graphql-mobius"
],
"homepage": "https://github.com/SaltyAom/mobius",
"repository": {
"type": "git",
"url": "://github.com/SaltyAom/mobius"
},
"bugs": "://github.com/SaltyAom/mobius/issues",
"license": "MIT",
"scripts": {
"dev": "bun run --watch example/index.ts",
"test": "bun test && npm run test:types",
"test:types": "tsc --project tsconfig.test.json",
"build": "rimraf dist && bun build.ts && tsc --project tsconfig.build.json",
"release": "npm run build && npm run test && npm publish --access public",
"trace": "tsc --generateTrace ./trace --incremental false"
},
"devDependencies": {
"@types/node": "^20.1.4",
"bun-types": "^0.7.0",
"eslint": "^8.40.0",
"expect-type": "^0.16.0",
"graphql": "^16.7.1",
"graphql-yoga": "^4.0.3",
"rimraf": "4.4.1",
"typescript": "^5.1.6"
},
"peerDependenciesMeta": {
"graphql": {
"optional": true
},
"graphql-yoga": {
"optional": true
}
}
}