-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.11 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
{
"name": "sanity-plugin-asset-source-giphy",
"version": "4.0.3",
"description": "Get giphies in Sanity",
"license": "MIT",
"repository": "https://github.com/XSlemX/sanity-plugin-asset-source-giphy",
"author": {
"email": "[email protected]",
"name": "Espen Th Sæverud",
"url": "https://github.com/XSlemX"
},
"contributors": [
{
"email": "[email protected]",
"name": "Rein Undheim",
"url": "https://github.com/Gawdfrey"
}
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@sanity/incompatible-plugin": "^0.0.1-studio-v3.1",
"@sanity/ui": "^0.37.12",
"axios": "^0.27.2",
"bricks.js": "^1.8.0",
"pretty-bytes": "^6.0.0",
"react": "^18.2.0",
"react-query": "^3.39.1",
"sanity": "^3.0.0-dev-preview.9",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@parcel/packager-ts": "2.6.2",
"@parcel/transformer-typescript-types": "2.6.2",
"@sanity/plugin-kit": "^0.1.0-v3-studio.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/bricks.js": "^1.8.2",
"@types/bytes": "^3.1.1",
"@types/react": "^18.0.14",
"@types/styled-components": "^5.1.25",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"parcel": "^2.6.2",
"prettier": "^2.7.1",
"sanipack": "^2.1.0",
"semantic-release": "^19.0.3",
"typescript": ">=4.7.4"
},
"keywords": [
"sanity",
"plugin",
"images",
"giphy",
"assets"
],
"source": "./src/index.tsx",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
}
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"src",
"lib",
"v2-incompatible.js",
"sanity.json"
],
"scripts": {
"prebuild": "plugin-kit verify-package --silent",
"build": "parcel build --no-cache",
"watch": "parcel watch",
"link-watch": "plugin-kit link-watch",
"prepublishOnly": "npm run build"
}
}