-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "@tutkli/jikan-ts",
"version": "2.1.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": "tsup --config tsup.config.ts",
"prepublishOnly": "bun run build",
"test:ci": "vitest --silent --run",
"test:coverage": "vitest run --coverage",
"test:dev": "vitest",
"test:ui": "vitest --ui --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:ci": "biome ci src",
"lint:fix": "biome check --apply-unsafe ./src"
},
"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.6.8",
"axios-cache-interceptor": "^1.5.2"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/node": "20.12.10",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"auto-changelog": "^2.5.0",
"axios": "^1.7.7",
"axios-cache-interceptor": "^1.6.1",
"lint-staged": "^15.2.10",
"tsup": "^8.3.0",
"typescript": "5.4.5",
"vitest": "^1.6.0"
}
}