-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.89 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": "simplelogin-client",
"version": "0.0.1",
"description": "Zero-dependency TypeScript client for the SimpleLogin.io API",
"main": "tscBuild/index.js",
"types": "tscBuild/index.d.ts",
"author": "Kenneth Wussmann",
"keywords": [
"simplelogin",
"api",
"client",
"sdk",
"rest",
"simplelogin.io"
],
"homepage": "https://kennethwussmann.github.io/simplelogin-client/",
"bugs": {
"url": "https://github.com/KennethWussmann/simplelogin-client/issues"
},
"repository": {
"url": "https://github.com/KennethWussmann/simplelogin-client"
},
"license": "MIT",
"scripts": {
"dev": "npm-watch",
"test": "tsx scripts/index.ts test",
"ci": "tsx scripts/index.ts ci",
"build": "tsx scripts/index.ts build",
"build:docs": "tsx scripts/index.ts buildDocs",
"build:src": "tsx scripts/index.ts buildSrc",
"rebuild": "tsx scripts/index.ts rebuild",
"clean": "tsx scripts/index.ts clean",
"check-codegen": "tsx scripts/index.ts checkCodegen",
"lint": "tsx scripts/index.ts lint",
"format": "tsx scripts/index.ts format",
"prepare": "lefthook install"
},
"files": [
"README.md",
"LICENSE",
"./tscBuild"
],
"watch": {
"build": {
"patterns": "oas",
"extensions": "yml,yaml"
}
},
"engines": {
"node": "24"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@ngneat/falso": "^8.0.2",
"@redocly/cli": "^2.14.2",
"@types/node": "25.*",
"@types/node-fetch": "^2.6.13",
"boats": "^5.3.0",
"lefthook": "^2.0.13",
"npm-watch": "^0.13.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"zx": "^8.8.5"
},
"packageManager": "pnpm@10.26.1+sha512.664074abc367d2c9324fdc18037097ce0a8f126034160f709928e9e9f95d98714347044e5c3164d65bd5da6c59c6be362b107546292a8eecb7999196e5ce58fa"
}