-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.09 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": "@harrisoff/onedrive-js-sdk",
"version": "2.0.0",
"description": "Js SDK for OneDrive",
"type": "module",
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"types": "./dist/types/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch"
},
"keywords": [
"onedrive",
"api",
"sdk",
"image",
"hosting"
],
"author": "harrisoff",
"homepage": "https://github.com/harrisoff/onedrive-js-sdk",
"repository": {
"type": "git",
"url": "https://github.com/harrisoff/onedrive-js-sdk"
},
"license": "MIT",
"dependencies": {
"axios": "^0.23.0"
},
"peerDependencies": {
"axios": "^0.23.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"eslint-config-xo": "^0.39.0",
"microbundle": "^0.14.1",
"typescript": "^4.4.4"
}
}