-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 1.93 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
{
"name": "@fnc/sanity-plugin-vimeo-browser",
"description": "A Sanity Plugin for browsing and uploading vimeo videos",
"version": "1.0.15",
"license": "MIT",
"author": {
"name": "Jesper Paulsen",
"email": "jesper@jesper.no"
},
"main": "dist/bundle.js",
"source": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/FNATIC/sanity-plugin-vimeo-browser"
},
"files": [
"dist/",
"lib/",
"sanity.json",
"CHANGELOG.md",
"README.md",
"LICENSE",
"Icon.svg"
],
"scripts": {
"clean": "rimraf ./lib",
"copyfiles": "copyfiles -f src/styles/tailwind.css lib/styles/ && copyfiles -f src/schemas/*.js lib/schemas/ && copyfiles -f src/icon/Icon.svg lib/icon",
"build": "npm run clean && tsc && npm run copyfiles && NODE_ENV=production rollup -c",
"dev": "npm run clean && nodemon"
},
"peerDependencies": {
"@sanity/base": "^2.11.2",
"react": "^16.9 || ^17",
"react-dom": "^16.9 || ^17"
},
"dependencies": {
"@sanity/form-builder": "^2.12.2",
"@sanity/ui": "^0.34.4",
"axios": "^0.21.1",
"react-dropzone": "^11.3.2",
"styled-components": "^5.3.0",
"tus-js-client": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@sanity/base": "^2.11.2",
"@sanity/client": "^2.11.0",
"@sanity/types": "^2.12.2",
"@svgr/rollup": "^5.5.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/node": "^15.12.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"autoprefixer": "^10.2.6",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.7",
"postcss": "^8.3.5",
"rimraf": "^3.0.2",
"rollup": "^2.52.3",
"rollup-plugin-postcss": "^4.0.0",
"tailwindcss": "^2.2.4",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"keywords": [
"sanity",
"cms",
"headless",
"realtime",
"content",
"sanity-plugin",
"vimeo",
"browser"
]
}