-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.6 KB
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
{
"name": "@lookingglass/blocks.js",
"private": false,
"version": "0.2.1",
"module": "./dist/looking-glass-blocks.mjs",
"main": "./dist/looking-glass-blocks.umd.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/looking-glass-blocks.mjs",
"require": "./dist/looking-glass-blocks.umd.js"
}
},
"files": [
"dist"
],
"graphql": {
"schema": "https://blocks.glass/api/graphql"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && yarn typedoc",
"preview": "vite preview",
"codegen": "graphql-codegen",
"typedoc": "npx typedoc --plugin typedoc-plugin-markdown --out docs src/main.ts --exclude \"src/gql/*.ts\" --excludePrivate --readme none --disableSources",
"typedoc:watch": "npx typedoc --plugin typedoc-plugin-markdown --out docs src/main.ts --exclude \"src/gql/*.ts\" --excludePrivate --readme none --disableSources --watch"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.9",
"@graphql-codegen/client-preset": "1.1.3",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typed-document-node": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@graphql-codegen/typescript-resolvers": "^4.0.0",
"@rollup/plugin-typescript": "^9.0.2",
"express": "^4.18.2",
"rollup-plugin-typescript-paths": "^1.4.0",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.8.4",
"vite": "^3.2.0"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.0.8",
"cross-fetch": "^3.1.5",
"encoding": "^0.1.13",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0"
}
}