-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.3 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": "maria2",
"type": "module",
"version": "0.4.0",
"description": "Simple and Light RPC Library for aria2",
"author": {
"name": "Hydration",
"url": "https://github.com/hydrati"
},
"license": "MIT",
"homepage": "https://github.com/hydrati/maria2#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hydrati/maria2.git"
},
"bugs": {
"url": "https://github.com/hydrati/maria2/issues"
},
"keywords": [
"aria2",
"download",
"http",
"websocket",
"metalink",
"magnet",
"ftp",
"bittorrent",
"typescript"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">= 22.5.0"
},
"scripts": {
"bundle": "pkgroll --minify --sourcemap --clean-dist",
"lint": "eslint .",
"release": "bumpp --commit --push --tag && npm publish",
"typecheck": "tsc --noEmit",
"preversion": "bun typecheck && bun bundle"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@types/bun": "^1.2.2",
"bumpp": "^9.11.1",
"eslint": "^9.19.0",
"pkgroll": "^2.6.1",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
}
}