-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1005 Bytes
/
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
{
"name": "userscript-with-webdav",
"type": "module",
"private": false,
"version": "1.0.0",
"description": "Connect WebDAV in the Tampermonkey/Violentmonkey script",
"author": "Light",
"license": "MIT",
"homepage": "https://github.com/LightAPIs/userscript-with-webdav",
"repository": "LightAPIs/userscript-with-webdav",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build"
},
"keywords": [
"webdav",
"userscript",
"tampermonkey",
"violentmonkey"
],
"publishConfig": {
"directory": "publish"
},
"devDependencies": {
"@types/tampermonkey": "4.20.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0"
},
"pnpm": {
"patchedDependencies": {
"@types/tampermonkey@4.20.3": "patches/@types__tampermonkey@4.20.3.patch"
}
}
}