-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.14 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
{
"name": "@nodesty/api-client",
"version": "3.0.0",
"description": "Generated, type-safe Node.js client for the Nodesty API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"generate:spec": "node scripts/normalize-openapi.mjs",
"generate:client": "openapi-ts --file openapi-ts.config.ts && node scripts/generate-facade.mjs",
"generate": "pnpm generate:spec && pnpm generate:client",
"generate:check": "pnpm generate:client && git diff --exit-code -- src/generated",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "pnpm build && node --test tests/*.test.mjs",
"prepack": "pnpm build",
"check": "pnpm generate:check && pnpm lint && pnpm typecheck && pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodestycom/node-api-client.git"
},
"keywords": [
"nodesty",
"api",
"client",
"api-client",
"nodesty-api-client"
],
"author": "hanzydev",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodestycom/node-api-client/issues"
},
"homepage": "https://github.com/nodestycom/node-api-client#readme",
"devDependencies": {
"@eslint/js": "^9.30.0",
"@hey-api/openapi-ts": "0.82.5",
"@types/node": "^20.19.43",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.3",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"tsdown": "^0.12.9",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0"
},
"type": "module",
"engines": {
"node": ">=18.18.0"
},
"packageManager": "pnpm@10.13.1",
"publishConfig": {
"access": "public"
}
}