-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.11 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.11 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@api-wrappers/tmdb-wrapper",
"version": "2.1.2",
"description": "Typed TMDB API v3 client with endpoint groups, image helpers, and api-core transport for TypeScript apps.",
"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",
"LICENSE",
"CHANGELOG.md",
"docs/**/*",
"examples/**/*"
],
"keywords": [
"tmdb",
"tmdb wrapper",
"tmdb-wrapper",
"the movie database",
"api client",
"api wrapper",
"typescript client",
"typescript",
"node",
"node.js",
"bun",
"movies",
"tv shows",
"movie api",
"tv api",
"media api",
"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",
"typecheck": "tsc --noEmit",
"verify": "bun run check && bun run typecheck && bun run test && bun run build && bun pm pack --dry-run",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run verify && changeset publish",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write ."
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@biomejs/biome": "^2.4.14",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.2",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"unrun": "^0.3.0"
},
"dependencies": {
"@api-wrappers/api-core": "^1.0.1"
}
}