-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 KB
/
package.json
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": "cosense-chatgpt-walker",
"version": "1.0.34",
"description": "A command-line tool for walking in Cosense(Scrapbox) with ChatGPT.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepublishOnly": "npm run build",
"tsc": "tsc -p tsconfig.json"
},
"keywords": [
"cosense",
"chatgpt",
"json",
"typescript"
],
"author": "Moeki Kawakami",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
},
"files": [
"lib/**/*",
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/kawakamimoeki/cosense-chatgpt-walker.git"
},
"bugs": {
"url": "https://github.com/kawakamimoeki/cosense-chatgpt-walker/issues"
},
"homepage": "https://github.com/kawakamimoeki/cosense-chatgpt-walker#readme",
"dependencies": {
"axios": "^1.7.2",
"fuse.js": "^7.0.0",
"openai": "^4.52.0",
"readline": "^1.3.0"
}
}