-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "sanity-plugin-asset-source-remove-bg",
"version": "1.0.0",
"description": "Remove the background of your images with remove.bg API through the sanity studio",
"author": {
"name": "Rein Undheim",
"email": "rein@undheim.io",
"url": "https://github.com/Gawdfrey"
},
"license": "MIT",
"source": "./src/index.tsx",
"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",
"semantic-release": "semantic-release"
},
"repository": {},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@sanity/incompatible-plugin": "^0.0.1-studio-v3.1",
"@sanity/ui": "^0.37.9",
"axios": "^0.27.2",
"react": "^17.0.0",
"sanity": "^3.0.0-dev-preview.7"
},
"devDependencies": {
"@parcel/packager-ts": "^2.6.0",
"@parcel/transformer-typescript-types": "^2.6.0",
"@sanity/plugin-kit": "^0.1.0-v3-studio.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.6.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sanity": "2.29.5-purple-unicorn.856",
"semantic-release": "^19.0.3",
"typescript": "^4.7.3"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
}
}