forked from download-directory/download-directory.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "download-directory",
"private": true,
"license": "MIT",
"type": "module",
"source": "index.html",
"scripts": {
"build": "run-s build:*",
"build:bundle": "parcel build --dist-dir public --no-scope-hoist",
"build:typescript": "tsc --noEmit",
"fix": "xo --fix",
"test": "run-p lint build test:*",
"test:vitest": "vitest run",
"lint": "xo",
"start": "run-p watch:*",
"watch": "npm start",
"watch:build": "parcel serve --dist-dir public",
"watch:typescript": "tsc --watch --noEmit",
"watch:vitest": "vitest watch"
},
"xo": {
"envs": [
"browser"
],
"rules": {
"unicorn/better-regex": "off"
}
},
"dependencies": {
"jszip": "^3.10.1",
"list-github-dir-content": "^4.0.4",
"p-map": "^7.0.2",
"p-retry": "^6.2.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"buffer": "^6.0.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"parcel-resolver-ignore": "^2.2.0",
"process": "^0.11.10",
"typed-query-selector": "^2.11.2",
"typescript": "^5.5.3",
"vitest": "^2.0.2",
"xo": "^0.58.0"
},
"parcelIgnore": [
"/\\?url"
]
}