-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "large-file-uploader",
"description": "file uploader, supporting file segmentation, Resume from break point, Offline storage",
"version": "2.2.4",
"scripts": {
"dev": "vite",
"build": "tsc && rollup -c rollup.config.js && vite build",
"preview": "vite preview"
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"lib",
"es",
"dist"
],
"type": "module",
"dependencies": {
"dexie": "^3.2.2",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"react-syntax-highlighter": "^15.5.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/spark-md5": "^3.0.2",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.1.0",
"antd": "^4.23.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-router-dom": "^6.4.2",
"rimraf": "^3.0.2",
"rollup": "^3.2.5",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-terser": "^7.0.2",
"styled-components": "^5.3.6",
"typescript": "^4.6.4",
"vite": "^3.1.0"
},
"license": "MIT"
}