-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.82 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.82 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@api-wrappers/tmdb-wrapper",
"version": "2.0.1",
"description": "A powerful and easy-to-use TypeScript wrapper for The Movie Database (TMDb) API",
"module": "./dist/index.mjs",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Api-Wrappers/tmdb-wrapper.git"
},
"homepage": "https://github.com/Api-Wrappers/tmdb-wrapper#readme",
"bugs": {
"url": "https://github.com/Api-Wrappers/tmdb-wrapper/issues"
},
"files": [
"dist/**/*",
"README.md"
],
"keywords": [
"tmdb",
"tmdbWrapper",
"tmdb wrapper",
"tmdb-wrapper",
"api wrapper",
"node",
"typescript",
"movies",
"tv shows",
"movie database",
"themoviedb",
"tmdb api",
"entertainment",
"media"
],
"engines": {
"node": ">=16"
},
"author": "api-wrappers",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "bun test",
"release": "npm run test && npm run build && npm version patch && npm publish",
"release:minor": "npm run test && npm run build && npm version minor && npm publish",
"release:major": "npm run test && npm run build && npm version major && npm publish",
"preversion": "npm run test && npm run build",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/bun": "^1.3.11",
"@types/node": "^22.19.15",
"tsdown": "^0.12.9",
"typescript": "^5.9.3"
}
}