-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.16 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
{
"name": "@almosteffective/premiumize-api",
"version": "3.3.0",
"description": "A TypeScript library for interacting with the Premiumize.me API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "oxlint --type-aware",
"format": "oxfmt",
"lint-staged": "lint-staged",
"prepare": "husky",
"publish": "pnpm build && np",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"premiumize",
"api",
"typescript"
],
"author": "Andy S <a.simeon@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.23.0",
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "4.0.15",
"@vitest/ui": "^4.0.15",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"msw": "^2.12.4",
"np": "^10.2.0",
"oxfmt": "^0.14.0",
"oxlint": "^1.23.0",
"oxlint-tsgolint": "^0.7.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"dependencies": {
"axios": "^1.6.0",
"zod": "^3.22.4"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}