-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "@untidy/mobygames",
"description": "Client library for MobyGames API in Node.js",
"version": "1.1.0",
"type": "module",
"author": "falsepopsky",
"license": "Apache-2.0",
"homepage": "https://falsepopsky.github.io/mobygames",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"api",
"database",
"games",
"videogames",
"mobygames"
],
"scripts": {
"clean:build": "rm -rf dist",
"prebuild": "pnpm run clean:build",
"build": "tsc --project tsconfig.build.json",
"test": "vitest --coverage"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.4.5"
},
"engines": {
"node": "^18.19.1 || ^20.8.1 || ^22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/falsepopsky/mobygames.git",
"directory": "packages/api"
},
"bugs": {
"url": "https://github.com/falsepopsky/mobygames/issues"
}
}