-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.1 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
{
"name": "sanity-plugin-asset-source-dall-e",
"version": "1.0.0",
"description": "Sanity asset source plugin for Dall-E",
"author": "Rein Undheim <rein@undheim.io>",
"license": "MIT",
"exports": {
".": {
"types": "./lib/src/index.d.ts",
"source": "./src/index.ts",
"import": "./lib/index.esm.js",
"require": "./lib/index.js",
"default": "./lib/index.esm.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"source": "./src/index.ts",
"types": "./lib/src/index.d.ts",
"files": [
"src",
"lib",
"v2-incompatible.js",
"sanity.json"
],
"scripts": {
"prebuild": "npm run clean && plugin-kit verify-package --silent && pkg-utils",
"build": "pkg-utils build --strict",
"clean": "rimraf lib",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"watch": "pkg-utils watch"
},
"repository": {},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@sanity/incompatible-plugin": "^1.0.3",
"@sanity/ui": "^1.0.0-beta.32",
"@tanstack/react-query": "^4.14.3",
"axios": "^1.1.3",
"@sanity/studio-secrets": "^2.0.0-v3-studio.6"
},
"devDependencies": {
"@sanity/pkg-utils": "^1.17.2",
"@sanity/plugin-kit": "^2.1.1",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"sanity": "3.0.0-rc.0",
"typescript": "^4.8.4",
"semantic-release": "^19.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"sanity": "dev-preview || 3.0.0-rc.0"
},
"sanityPlugin": {
"verifyPackage": {
"srcIndex": false
}
}
}