-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "rollup-plugin-pull-remote-blob",
"version": "2.0.2",
"description": "Rollup plugin for downloading arbitrary remote files into any local directory on project build time",
"keywords": ["rollup", "vite", "plugin", "download", "remote", "files", "blob", "build"],
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aabmets/rollup-plugin-pull-remote-blob.git"
},
"author": "Mattias Aabmets <[email protected]>",
"types": "./types/index.d.ts",
"module": "./dist/index.js",
"exports": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"files": ["dist", "types", "README.md", "LICENSE"],
"scripts": {
"coverage": "vitest --ui --coverage",
"compile": "tsc -p tsconfig.json",
"check": "bun run compile --noEmit && biome check",
"pubtest": "bun run compile && bun pm pack --destination ./packages",
"pubnow": "biome check --error-on-warnings && tsc -p tsconfig.json && bun publish"
},
"dependencies": {
"@types/cli-progress": ">=3.0.0",
"@types/decompress": ">=4.0.0",
"@types/validator": ">=13.0.0",
"ansis": ">=3.0.0",
"async-mutex": ">=0.5.0",
"axios": ">=1.6.0",
"cli-progress": ">=3.0.0",
"decompress": ">=4.0.0",
"superstruct": ">=2.0.0",
"validator": ">=13.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.3",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^3.0.7",
"lefthook": "^1.11.0",
"rollup": "^4.34.8",
"typescript": "^5.7.3",
"vitest": "^3.0.7"
},
"peerDependencies": {
"rollup": ">=4.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"rollup": {
"optional": true
}
},
"engines": {
"node": ">=22.0.0"
}
}