-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "@macroos/auth-hooks",
"version": "1.0.8",
"description": "Hooks for implementing macro auth",
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js"
}
},
"scripts": {
"build": "graphql-codegen && vite build && tsc --emitDeclarationOnly",
"codegen": "graphql-codegen",
"dev": "concurrently \"vite\" \"graphql-codegen --watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/coparse-inc/macro-auth-hooks.git"
},
"author": "Seaninator and Hutchinator",
"license": "ISC",
"bugs": {
"url": "https://github.com/coparse-inc/macro-auth-hooks/issues"
},
"homepage": "https://github.com/coparse-inc/macro-auth-hooks#readme",
"devDependencies": {
"@graphql-codegen/cli": "^2.11.6",
"@graphql-codegen/gql-tag-operations-preset": "^1.5.4",
"babel-preset-solid": "^1.4.8",
"concurrently": "^7.3.0",
"solid-js": "^1.4.8",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vite-plugin-solid": "^2.3.0"
},
"dependencies": {
"graphql-tag": "^2.12.6",
"@graphql-typed-document-node/core": "^3.1.1"
}
}