-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) 路 946 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) 路 946 Bytes
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
{
"name": "node-shikimori",
"version": "2.1.0",
"description": "A typescript wrapper for the http://shikimori.org API",
"main": "dist/index.js",
"typing": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"prettier": "prettier \"src/**/*.{ts,tsx}\" --check",
"prettier:fix": "npm run prettier -- --write",
"docs": "npx typedoc"
},
"repository": {
"type": "git",
"url": "https://github.com/Capster/node-shikimori"
},
"bugs": {
"url": "https://github.com/Capster/node-shikimori/issues"
},
"keywords": [
"shikimori",
"api",
"anime",
"manga",
"ranobe"
],
"author": "Capster <m6277@me.com>",
"license": "MIT",
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.3",
"@types/node": "^20.5.9",
"prettier": "^3.5.3",
"tsup": "^7.2.0",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}