-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "@lujax/github-sdk",
"version": "1.0.0",
"description": "TypeScript-first GitHub REST API SDK - ergonomic, typed, near-zero dependencies",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lujax-dev/github-sdk.git"
},
"homepage": "https://github.com/lujax-dev/github-sdk#readme",
"bugs": {
"url": "https://github.com/lujax-dev/github-sdk/issues"
},
"author": {
"name": "Lewie Jackson",
"url": "https://github.com/LewieJ08"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck:examples": "tsc -p tsconfig.examples.json"
},
"keywords": [
"github",
"github-sdk",
"sdk",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^25.5.2",
"dotenv": "^17.4.2",
"jest": "^29.7.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.11",
"typescript": "^6.0.2"
},
"dependencies": {
"jose": "^5.10.0"
}
}