-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "jules-api-node",
"version": "0.0.5",
"description": "Jules API Client",
"keywords": [
"jules",
"api",
"client"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ByteLandTechnology/jules-api-node.git"
},
"license": "MIT",
"author": "ByteLand Technology <github@byteland.app>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist",
"docs"
],
"scripts": {
"test": "vitest run",
"prepare": "husky",
"build": "openapi-ts -i jules-openapi.yaml -o src -c @hey-api/client-axios && tsup",
"docs": "typedoc --plugin typedoc-plugin-markdown --disableSources --out docs/api && prettier --write docs/api"
},
"peerDependencies": {
"ink": ">=6",
"react": ">=19"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@hey-api/openapi-ts": "^0.88.1",
"@sindresorhus/tsconfig": "^8.1.0",
"@types/ink": "^0.5.2",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"husky": "^9.1.7",
"ink": "^6.5.1",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"react": "^19.2.1",
"tsup": "^8.5.1",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0"
},
"dependencies": {
"axios": "^1.13.2"
}
}