-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "rollup-plugin-pull-remote-blob",
"version": "1.0.3",
"description": "Rollup plugin to download arbitrary files from remote URL-s into any local directory on project build time",
"keywords": ["rollup", "plugin", "download", "remote", "files"],
"type": "module",
"license": "MIT",
"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": {
"check": "tsc -p tsconfig.json --noEmit && biome check",
"pubtest": "tsc -p tsconfig.json && bun pm pack --destination ./packages",
"pubnow": "biome check --error-on-warnings && tsc -p tsconfig.json && bun publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@jest/globals": "^29.7.0",
"@types/bun": "^1.1.11",
"@types/decompress": "^4.2.7",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.7",
"@types/validator": "^13.12.2",
"axios": "^1.7.7",
"decompress": "^4.2.1",
"jest": "^29.7.0",
"lefthook": "^1.7.22",
"rollup": "^4.24.0",
"superstruct": "^2.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.0.0",
"validator": "^13.12.0"
},
"peerDependencies": {
"axios": "^1.7.7",
"decompress": "^4.2.1",
"rollup": "^4.0.0",
"superstruct": "^2.0.2",
"typescript": "^5.0.0",
"validator": "^13.12.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"rollup": {
"optional": true
}
}
}