-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 2.95 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "psn-api",
"description": "A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.",
"keywords": [
"psn",
"playstation",
"trophies",
"npsso",
"achievements",
"ps4",
"ps5"
],
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"version": "0.0.0-development",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"author": "Wes Copeland",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"playground": "vite-node --watch src/__playground.ts",
"build": "vite build",
"prepare": "vite build",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"verify": "npm-run-all --parallel format:check lint && npm-run-all test:coverage build",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@faker-js/faker": "^10.3.0",
"@nkzw/oxlint-config": "^1.0.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^22.0.0",
"@vitest/coverage-istanbul": "^4.0.18",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^5.6.0",
"eslint-plugin-unused-imports": "^4.4.1",
"nock": "^14.0.4",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"semantic-release": "^25.0.3",
"typescript": "^5.8.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
},
"release": {
"branches": [
"main",
"next"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"release": "patch"
},
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/achievements-app/psn-api.git"
},
"pnpm": {
"overrides": {
"braces": ">=3.0.3",
"cross-spawn": ">=7.0.5",
"micromatch": ">=4.0.8",
"minimatch@>=3 <4": ">=3.1.4",
"minimatch@>=10 <11": ">=10.2.3",
"semver": ">=7.5.2",
"tough-cookie": ">=4.1.3",
"ws": ">=7.5.10",
"form-data": ">=3.0.4",
"js-yaml": ">=4.1.1",
"ajv": ">=6.14.0",
"brace-expansion": ">=1.1.12"
}
}
}