-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
102 lines (102 loc) · 2.89 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
{
"name": "sanity-plugin-taxonomy-manager",
"version": "3.2.5",
"description": "Create and manage SKOS compliant taxonomies, thesauri, and classification schemes in Sanity Studio.",
"keywords": [
"sanity",
"sanity-plugin",
"SKOS",
"taxonomy",
"thesaurus"
],
"homepage": "https://github.com/andybywire/sanity-plugin-taxonomy-manager#readme",
"bugs": {
"url": "https://github.com/andybywire/sanity-plugin-taxonomy-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andybywire/sanity-plugin-taxonomy-manager.git"
},
"license": "MIT",
"author": "Andy Fitzgerald",
"sideEffects": false,
"browserslist": "extends @sanity/browserslist-config",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./lib/index.esm.mjs",
"require": "./lib/index.js",
"default": "./lib/index.esm.mjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"sanity.json",
"src",
"v2-incompatible.js"
],
"scripts": {
"prebuild": "npm run clean && plugin-kit verify-package --silent && pkg-utils",
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
"clean": "rimraf lib",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"watch": "pkg-utils watch --strict",
"format": "prettier --write --cache --ignore-unknown ."
},
"dependencies": {
"@sanity/color": "^3.0.0",
"@sanity/icons": "^3.4.0",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^2.8.9",
"@sanity/util": "^3.34.0",
"react-fast-compare": "^3.2.2",
"react-icons": "^4.3.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@sanity/pkg-utils": "^6.10.10",
"@sanity/plugin-kit": "^4.0.18",
"@types/react": "^18.0.35",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^5.0.5",
"sanity": "^3.62.3",
"sanity-plugin-utils": "^1.6.5",
"styled-components": "^6.1.8",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^18",
"sanity": "^3"
},
"engines": {
"node": ">=18"
},
"sanityExchangeUrl": "https://www.sanity.io/plugins/taxonomy-manager",
"sanityPlugin": {
"verifyPackage": {
"dependencies": false,
"studioConfig": false,
"eslintImports": false,
"tsc": false
}
}
}