-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 KB
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
54
{
"name": "civitai-one-click-dl",
"browserslist": "> 0.5%, last 2 versions, not dead",
"version": "1.0.0",
"description": "Userscript to add a button to download model + images from CivitAI",
"source": "src/civitai-dl-btn.user.ts",
"browser ": "dist/civitai-dl-btn.user.js",
"targets": {
"default": {
"context": "browser",
"sourceMap": false,
"includeNodeModules": true
}
},
"scripts": {
"clean": "rimraf dist/",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"check": "npm-run-all -p typecheck -p lint",
"watch": "parcel watch",
"build": "parcel build",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write ."
},
"author": "Rob",
"license": "MIT",
"devDependencies": {
"@damoclark/parcel-optimizer-userscript": "^0.0.2",
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@tsconfig/recommended": "^1.0.2",
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.194",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@violentmonkey/types": "^0.1.5",
"eslint": "^8.40.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.3",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@violentmonkey/url": "^0.1.0",
"@zip.js/zip.js": "^2.7.6",
"file-saver": "^2.0.5",
"lodash": "^4.17.21"
}
}