-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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": "@dreamonkey/graphql-codegen-near-operation-file",
"version": "0.1.2",
"description": "Write your documents in `.graphql` files, then import the generated code from `.graphql` files in your code!",
"author": "Dreamonkey Srl <[email protected]> (https://dreamonkey.com)",
"contributors": [
"Yusuf Kandemir <[email protected]>"
],
"homepage": "https://github.com/dreamonkey/graphql-codegen-stack/tree/main/packages/near-operation-file#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dreamonkey/graphql-codegen-stack.git",
"directory": "packages/near-operation-file"
},
"bugs": {
"url": "https://github.com/dreamonkey/graphql-codegen-stack/issues"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test": "echo \"TODO: Implement tests\""
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@types/node": "^16.18.12",
"unbuild": "^2.0.0",
"vite": "^2.9.16"
}
}