-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sanity-plugin-graphiql",
"version": "1.7.1",
"description": "Add GraphiQL to your Sanity desk",
"keywords": [
"sanity",
"sanity-plugin",
"graphql",
"graphiql"
],
"homepage": "https://github.com/romeovs/sanity-plugin-graphiql#readme",
"bugs": {
"url": "https://github.com/romeovs/sanity-plugin-graphiql/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/romeovs/sanity-plugin-graphiql.git"
},
"license": "MIT",
"author": "Romeo Van Snick <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"require": "./dist/index.js",
"import": "./dist/index.esm.js",
"default": "./dist/index.esm.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"build": "run-s clean && plugin-kit verify-package --silent && pkg-utils build --strict && pkg-utils --strict",
"clean": "rimraf dist",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepublishOnly": "run-s build",
"watch": "pkg-utils watch --strict",
"test": "vitest run"
},
"dependencies": {
"@graphiql/react": "^0.19.4",
"@graphiql/toolkit": "^0.9.2",
"@sanity/icons": "^2.11.8",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^2.8.9",
"graphiql": "^3.7.1"
},
"devDependencies": {
"@sanity/pkg-utils": "^2.4.10",
"@sanity/plugin-kit": "^3.1.12",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"graphql": "^16.9.0",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"rimraf": "^5.0.10",
"rollup-plugin-styles": "^4.0.0",
"sanity": "^3.60.0",
"styled-components": "^5.3.11",
"typescript": "^5.6.3",
"vite": "^4.5.5",
"vitest": "^0.34.6"
},
"peerDependencies": {
"react": "^18",
"sanity": "^3"
},
"engines": {
"node": ">=14"
}
}