This repository was archived by the owner on Dec 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "hydrusapi",
"version": "80.643.13",
"description": "A JavaScript based asynchronous implementation of the Hydrus Network client API with documentation, tests, and type definitions.",
"homepage": "https://github.com/shadownetdev1/HydrusAPI",
"bugs": {
"url": "https://github.com/shadownetdev1/HydrusAPI/issues"
},
"repository": "github:shadownetdev1/HydrusAPI",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "npm run hook && vitest run --coverage --coverage.reporter=text --coverage.reportsDirectory=/tmp/hydrusapi_coverage",
"test:watch": "npm run hook && vitest --coverage --coverage.reporter=text --coverage.reportsDirectory=/tmp/hydrusapi_coverage",
"type-defs": "npx tsc -p ./tsconfig.json; cp defs/index.d.ts types/index.d.ts && sed -i 's:types/types.d.ts:types.d.ts:g' types/index.d.ts",
"hook": "cp scripts/pre-commit .git/hooks/pre-commit"
},
"keywords": [
"hydrusnetwork",
"hydrus",
"hydrus-network"
],
"files": [
"types/",
"CHANGELOG.MD",
"index.js",
"license.txt",
"README.MD"
],
"license": "SEE LICENSE IN license.txt",
"type": "commonjs",
"cspell": {
"version": "0.2",
"language": "en",
"words": [
"APNG",
"azur",
"booru",
"Hodan",
"hpos",
"hydrusapi",
"IPFS",
"shadownetdev1",
"Ugoira",
"Ugoiras",
"unanchor",
"unzstd",
"vpos"
],
"ignoreWords": [
"someoverbooru"
],
"flagWords": [],
"allowCompoundWords": true,
"dictionaries": [
"en_US",
"en-gb",
"companies",
"softwareTerms",
"misc",
"typescript",
"npm"
]
},
"devDependencies": {
"@eslint/js": "9.36.0",
"@types/node": "24.5.2",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.36.0",
"fs-jetpack": "^5.1.0",
"globals": "16.4.0",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"devEngines": {
"os": {
"name": "linux",
"onFail": "error"
}
}
}