-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "@justwicked/tmdb-client",
"version": "1.0.5",
"description": "A lightweight TypeScript Client for the TMDB API.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run generate:api && tsc",
"prepare": "npm run build",
"format": "prettier . --write",
"generate:api": "rimraf ./src/client/__generated__/api ./src/client/__generated__/schema && orval"
},
"repository": {
"type": "git",
"url": "https://github.com/justwickedcode/tmdb-client.git"
},
"keywords": [
"tmdb",
"api",
"rest",
"wrapper"
],
"author": "justwickedcode",
"license": "MIT",
"devDependencies": {
"dotenv": "^17.3.1",
"orval": "^7.21.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.3"
}
}