-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.97 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.97 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
{
"name": "@api-wrappers/trakt-wrapper",
"version": "0.1.0",
"description": "Type-safe TypeScript Trakt companion SDK for watchlists, history, ratings, calendars, scrobbling, user sync, OAuth, pagination, and api-core plugins.",
"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"
},
"files": [
"dist",
"docs",
"README.md",
"ROADMAP.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsdown --config tsdown.config.mjs --config-loader native",
"test": "bun test",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --noEmit -p tsconfig.test.json",
"check": "bun run typecheck && bun run typecheck:tests",
"verify": "bun run check && bun run test && bun run build",
"validate": "bun run verify",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run verify && changeset publish",
"prepublishOnly": "bun run verify"
},
"keywords": [
"trakt",
"trakt-api",
"trakttv",
"api-wrapper",
"api-client",
"sdk",
"typescript",
"type-safe",
"movies",
"tv",
"shows",
"scrobble",
"watchlist",
"history",
"ratings",
"calendar",
"sync",
"nodejs",
"bun"
],
"author": "api-wrappers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Api-Wrappers/trakt-wrapper.git"
},
"homepage": "https://github.com/Api-Wrappers/trakt-wrapper#readme",
"bugs": {
"url": "https://github.com/Api-Wrappers/trakt-wrapper/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/bun": "^1.3.13",
"tsdown": "^0.22.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"typescript": "^5 || ^6"
},
"dependencies": {
"@api-wrappers/api-core": "^1.0.1"
}
}