-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.73 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
{
"name": "vndb-kana-api",
"version": "0.3.0",
"description": "A complete TypeScript wrapper for the VNDB Kana API (v2)",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"examples": "npx tsx examples/basic-usage.js"
},
"keywords": [
"vndb",
"visual-novel",
"database",
"api",
"wrapper",
"typescript",
"kana"
],
"author": "KidiXDev",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/KidiXDev/vndb-kana-api.git"
},
"bugs": {
"url": "https://github.com/KidiXDev/vndb-kana-api/issues"
},
"homepage": "https://github.com/KidiXDev/vndb-kana-api#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.1",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"jest": "^30.0.0",
"ts-jest": "^29.4.0",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.10.0"
}
}