-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
94 lines (94 loc) · 2.69 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-hotspot-array",
"version": "2.1.2",
"workspaces": [
"./examples/*"
],
"description": "A configurable Custom Input for Arrays that will add and update items by clicking on an Image",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/sanity-io/sanity-plugin-hotspot-array#readme",
"bugs": {
"url": "https://github.com/sanity-io/sanity-plugin-hotspot-array/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:sanity-io/sanity-plugin-hotspot-array.git"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist",
"v2-incompatible.js",
"sanity.json"
],
"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 dist",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"watch": "pkg-utils watch --strict"
},
"browserslist": "extends @sanity/browserslist-config",
"dependencies": {
"@sanity/asset-utils": "^2.0.6",
"@sanity/image-url": "^1.0.2",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/util": "^3.0.0",
"@types/lodash-es": "^4.17.12",
"framer-motion": "^11.0.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@sanity/browserslist-config": "^1.0.3",
"@sanity/pkg-utils": "^6.7.0",
"@sanity/plugin-kit": "^4.0.4",
"@sanity/semantic-release-preset": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-sanity": "^7.1.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"react": "^18",
"rimraf": "^5.0.5",
"sanity": "^3.0.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@sanity/ui": "^2.0.0",
"react": "^18",
"sanity": "^3.0.0",
"styled-components": "^6.1"
},
"engines": {
"node": ">=18"
}
}