-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "cloudreve-uploader",
"version": "1.0.0",
"files": [
"dist"
],
"main": "./dist/uploader.umd.js",
"module": "./dist/uploader.es.js",
"exports": {
".": {
"import": "./dist/uploader.es.js",
"require": "./dist/uploader.umd.js"
}
},
"types": "types/index.d.ts",
"license": "MIT",
"scripts": {
"build": "vite && pnpm run types",
"types": "rimraf types && tsc --declaration --outDir types/ --emitDeclarationOnly --declarationMap"
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.14.0",
"@rollup/plugin-babel": "^5.3.0",
"@types/node": "^16.6.1",
"babel-loader": "^8.2.2",
"rimraf": "^3.0.2",
"typescript": "^4.2.4",
"vite": "^2.4.4",
"vite-plugin-dts": "^0.5.3"
}
}