-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 2.86 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "sanity-plugin-content-model-graph",
"version": "2.0.0",
"description": "",
"keywords": [
"cms",
"content-model",
"content",
"graph",
"graph",
"graphing",
"headless",
"modelling",
"realtime",
"sanity-io",
"sanity-plugin",
"sanity-tool",
"sanity",
"tool",
"visualisation",
"vizualisation"
],
"homepage": "https://github.com/ahmdigital/content-model-graph#readme",
"bugs": {
"url": "https://github.com/ahmdigital/content-model-graph/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ahmdigital/content-model-graph.git"
},
"license": "MIT",
"author": "ahm digital <joshua.edwards@medibank.com.au>",
"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",
"test": "jest",
"watch": "pkg-utils watch --strict"
},
"dependencies": {
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^2.0.3",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"react-icons": "^5.0.1",
"styled-components": "^5.3.3",
"viz.js": "^2.1.2"
},
"devDependencies": {
"@ahmdigital/eslint-config": "7.1.48",
"@sanity/pkg-utils": "4.2.0",
"@sanity/plugin-kit": "3.1.10",
"@types/file-saver": "2.0.7",
"@types/jest": "29.5.12",
"@types/react": "18.2.55",
"@types/styled-components": "^5.1.34",
"@types/viz.js": "^2.1.5",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-sanity": "7.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.7.0",
"npm-run-all": "4.1.5",
"prettier": "3.2.5",
"prettier-plugin-packagejson": "2.4.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"rimraf": "5.0.5",
"sanity": "3.29.0",
"styled-components": "5.3.11",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
},
"peerDependencies": {
"react": "^18",
"sanity": "^3"
},
"engines": {
"node": ">=14"
}
}