-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.74 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
{
"name": "octoprint-onedrive-backup",
"version": "1.0.0",
"description": "Automatically upload OctoPrint Backups to OneDrive",
"scripts": {
"start": "npm run esbuild-dev",
"release": "npm run esbuild",
"esbuild": "esbuild ./octoprint_onedrive_backup/static/src/onedrive.tsx --loader:.js=jsx --bundle --minify --sourcemap --target=\"chrome92,edge96,firefox94,ios12.2,safari13.1\" --outfile=./octoprint_onedrive_backup/static/dist/onedrive_backup.js",
"esbuild-dev": "esbuild ./octoprint_onedrive_backup/static/src/onedrive.tsx --loader:.js=jsx --bundle --watch --target=\"chrome96,firefox95,safari15.2\" --outfile=./octoprint_onedrive_backup/static/dist/onedrive_backup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cp2004/OctoPrint-OneDrive-Backup.git"
},
"keywords": [
"onedrive",
"octoprint"
],
"author": "Charlie Powell",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/cp2004/OctoPrint-OneDrive-Backup/issues"
},
"homepage": "https://github.com/cp2004/OctoPrint-OneDrive-Backup#readme",
"devDependencies": {
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"concurrently": "^7.0.0",
"esbuild": "^0.14.31",
"eslint": "^8.10.0",
"eslint-config-react-app": "7.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.16",
"typescript": "^4.6.2"
},
"main": "octoprint_onedrive_backup/static/src/onedrive.js"
}