-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.6 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
{
"name": "sanity-plugin-google-drive",
"version": "1.1.0",
"description": "Sanity plugin for Google Drive integration",
"keywords": [
"sanity",
"sanity-plugin"
],
"homepage": "https://github.com/nkgentile/sanity-plugin-google-drive#readme",
"bugs": {
"url": "https://github.com/nkgentile/sanity-plugin-google-drive/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nkgentile/sanity-plugin-google-drive"
},
"license": "MIT",
"author": "Noah Gentile <[email protected]>",
"type": "commonjs",
"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",
"clean": "rimraf lib",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"watch": "pkg-utils watch"
},
"dependencies": {
"@sanity/icons": "^2.2.1",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^1.0.11",
"react-google-drive-picker": "^1.2.0",
"react-icons": "^4.7.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/prompt-cli": "^17.3.0",
"@sanity/pkg-utils": "^2.0.3",
"@sanity/plugin-kit": "^2.2.0",
"@sanity/semantic-release-preset": "^2.0.5",
"@types/google.picker": "^0.0.39",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"prettier-plugin-packagejson": "^2.3.0",
"react": "^18",
"rimraf": "^3.0.2",
"sanity": "^3.0.0",
"semantic-release": "^19.0.5",
"styled-components": "^5.3.6",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^18",
"sanity": "^3.0.0",
"styled-components": "^5.2"
},
"engines": {
"node": ">=14"
}
}