-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.68 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
{
"name": "@imlunahey/psn-api",
"version": "1.0.0",
"description": "PlayStation Network API client",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ImLunaHey/psn-api.git"
},
"bugs": {
"url": "https://github.com/ImLunaHey/psn-api/issues"
},
"homepage": "https://github.com/ImLunaHey/psn-api#readme",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.2",
"scripts": {
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"build": "tsdown",
"typecheck": "tsc --noEmit",
"check:exports": "attw --pack .",
"prepublishOnly": "pnpm build && pnpm check:exports",
"example:basic": "tsx examples/basic.ts",
"example:persist": "tsx examples/persist-tokens.ts",
"example:trophies": "tsx examples/trophies.ts",
"example:iterate": "tsx examples/iterate-all.ts",
"example:search": "tsx examples/search.ts",
"example:friends": "tsx examples/friends.ts",
"example:recently-played": "tsx examples/recently-played.ts",
"example:trophy-profile": "tsx examples/trophy-profile.ts"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@types/node": "^25.6.0",
"tsdown": "^0.9.0",
"tsx": "^4.0.0",
"typescript": "^5.6.0"
}
}