-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "react-filepond",
"version": "7.1.3",
"description": "A handy FilePond adapter component for React",
"homepage": "https://pqina.nl/filepond",
"license": "MIT",
"repository": "pqina/react-filepond",
"main": "dist/react-filepond.js",
"browser": "dist/react-filepond.js",
"module": "dist/react-filepond.esm.js",
"keywords": [
"react",
"reactjs",
"filepond",
"file",
"upload",
"drag",
"drop",
"browse",
"image",
"preview"
],
"author": {
"name": "PQINA",
"url": "https://pqina.nl"
},
"types": "types/index.d.ts",
"scripts": {
"start": "npm run build:watch",
"build": "mkdirp dist && npm run build:browser && npm run build:module",
"build:browser": "babel lib | bannerjs -m > dist/react-filepond.js && minicat dist/react-filepond.js > example/src/react-filepond/index.js",
"build:module": "minicat lib/index.js | bannerjs -m > dist/react-filepond.esm.js",
"build:watch": "nodemon --watch lib -x \"npm run build\"",
"prepare": "npm run build",
"dtslint": "dtslint types"
},
"peerDependencies": {
"react": "16 - 19",
"react-dom": "16 - 19",
"filepond": ">=3.7.x < 5.x"
},
"devDependencies": {
"@types/react": "^16.9.48",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bannerjs": "^1.0.5",
"dtslint": "^3.7.0",
"filepond": ">=3.7.x <5.x",
"minicat": "^1.0.0",
"mkdirp": "^0.5.1",
"nodemon": "^1.17.3",
"typescript": "^4.0.2"
}
}