-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "nekos-best.js",
"version": "6.3.0",
"description": "The official JavaScript wrapper for the https://nekos.best API with TypeScript typings.",
"typings": "index.d.ts",
"files": [
"index.*"
],
"exports": {
"import": "./index.mjs",
"require": "./index.js"
},
"license": "MIT",
"bugs": "https://github.com/nekos-best/nekos-best.js/issues",
"author": "thunder04 (https://github.com/thunder04)",
"repository": "github:nekos-best/nekos-best.js",
"contributors": [
"oriel-beck (https://github.com/oriel-beck)",
"Thusuzzee (https://github.com/Thusuzzee)"
],
"keywords": [
"nekos",
"neko",
"api",
"wrapper",
"roleplay",
"rp"
],
"scripts": {
"build": "pnpm esbuild index.ts --outfile=index.js --platform=node --format=cjs --target=esnext",
"types": "pnpm tsc --emitDeclarationOnly",
"prepack": "pnpm build && pnpm types"
},
"dependencies": {
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^16.17.0",
"esbuild": "^0.17.19",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16.17.0"
}
}