-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 2.68 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/hierarchical-document-list",
"version": "2.0.0",
"description": "Sanity Plugin - Hierarchical Document List",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/sanity-io/hierarchical-document-list#readme",
"bugs": {
"url": "https://github.com/sanity-io/hierarchical-document-list/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:sanity-io/hierarchical-document-list.git"
},
"license": "MIT",
"author": "Sanity <hello@sanity.io>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.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": {
"prepare": "npm run build && husky install",
"build": "run-s clean && pkg-utils build --strict && pkg-utils --strict",
"prepublishOnly": "run-s build",
"clean": "rimraf dist",
"format": "prettier --write --cache --ignore-unknown .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"watch": "pkg-utils watch --strict"
},
"dependencies": {
"@nosferatu500/react-sortable-tree": "^4.4.0",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/mutator": "^3.19.3",
"@sanity/ui": "^1.9.3",
"@sanity/util": "^3.19.3",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@sanity/pkg-utils": "^3.3.2",
"@sanity/plugin-kit": "^3.1.10",
"@sanity/semantic-release-preset": "^4.1.6",
"@types/react": "^18.2.41",
"@types/styled-components": "^5.1.32",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-sanity": "^7.0.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-plugin-packagejson": "^2.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^5.0.5",
"sanity": "^3.20.2",
"styled-components": "^5.3.11",
"typescript": "^5.3.2"
},
"peerDependencies": {
"react": "^18",
"sanity": "^3"
},
"engines": {
"node": ">=14"
}
}