This repository was archived by the owner on Jan 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 KB
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
{
"name": "sanity-plugin-widgetkit",
"version": "1.0.3",
"description": "",
"author": "Kevin <kevin@gervais.is>",
"license": "MIT",
"source": "./src/index.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
}
},
"files": [
"src",
"lib",
"v2-incompatible.js",
"sanity.json"
],
"scripts": {
"clean": "rimraf lib",
"lint": "eslint .",
"prebuild": "npm run clean && plugin-kit verify-package --silent",
"build": "parcel build --no-cache",
"watch": "parcel watch",
"link-watch": "plugin-kit link-watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/touchlesscode/sanity-plugin-widgetkit.git"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@sanity/incompatible-plugin": "^0.0.1-studio-v3.1"
},
"devDependencies": {
"@parcel/packager-ts": "2.6.2",
"@parcel/transformer-typescript-types": "2.6.2",
"@sanity/plugin-kit": "^0.1.0-v3-studio.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.6.2",
"prettier": "^2.7.1",
"react": "^17.0.0 || ^18.0.0",
"rimraf": "^3.0.2",
"sanity": "2.29.5-purple-unicorn.856",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"sanity": "purple-unicorn"
}
}