-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "@tutkli/jikan-ts",
"version": "2.2.0",
"description": "Node.js wrapper for the Jikan API with built-in typings.",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"prepare": "git config core.hookspath .githooks",
"build": "bun bun.build.js",
"prepublishOnly": "bun run build",
"test:dev": "bun test",
"test:coverage": "bun test --coverage",
"version": "auto-changelog -p -l false && git add CHANGELOG.md",
"format": "biome format ./src",
"format:fix": "biome format --write ./src",
"lint": "biome check ./src",
"lint:fix": "biome check --write --unsafe ./src"
},
"files": ["dist/", "README.md", "LICENSE"],
"repository": {
"type": "git",
"url": "https://github.com/tutkli/jikan-ts.git"
},
"keywords": ["jikan", "jikan-api", "jikanAPI", "MyAnimeList"],
"author": {
"name": "Clara Castillo",
"url": "https://github.com/tutkli"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tutkli/jikan-ts/issues"
},
"homepage": "https://github.com/tutkli/jikan-ts#readme",
"peerDependencies": {
"axios": "^1.7.9",
"axios-cache-interceptor": "^1.6.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/node": "22.10.2",
"auto-changelog": "^2.5.0",
"axios": "^1.7.9",
"axios-cache-interceptor": "^1.6.2",
"bun-plugin-dts": "^0.3.0",
"lint-staged": "^15.4.2",
"typescript": "5.7.3"
}
}