Skip to content

Commit 8603e65

Browse files
committed
chore: update oclif
1 parent 1ebd1b3 commit 8603e65

File tree

3 files changed

+1067
-1087
lines changed

3 files changed

+1067
-1087
lines changed

oclif.config.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
bin: 'aigc-detector',
3+
commands: './dist/cli/commands',
4+
dirname: 'aigc-detector',
5+
plugins: [
6+
'@oclif/plugin-help',
7+
'@oclif/plugin-not-found',
8+
'@oclif/plugin-version',
9+
'@oclif/plugin-warn-if-update-available'
10+
]
11+
};

package.json

+8-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aigc-detector",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"description": "Detect if content is generated by AI",
55
"keywords": [
66
"aigc",
@@ -28,33 +28,22 @@
2828
"build": "rm -rf dist && tsc -b && node ./scripts/babel.js && oclif manifest",
2929
"prepare": "husky"
3030
},
31-
"oclif": {
32-
"bin": "aigc-detector",
33-
"commands": "./dist/cli/commands",
34-
"dirname": "aigc-detector",
35-
"plugins": [
36-
"@oclif/plugin-help",
37-
"@oclif/plugin-not-found",
38-
"@oclif/plugin-version",
39-
"@oclif/plugin-warn-if-update-available"
40-
]
41-
},
4231
"dependencies": {
4332
"@langchain/community": "^0.2.6",
4433
"@langchain/core": "^0.2.6",
4534
"@langchain/openai": "^0.1.1",
46-
"@oclif/core": "^3.26.4",
47-
"@oclif/plugin-help": "^6.0.21",
48-
"@oclif/plugin-not-found": "^3.1.6",
49-
"@oclif/plugin-version": "^2.0.17",
50-
"@oclif/plugin-warn-if-update-available": "^3.0.16",
35+
"@oclif/core": "^4.0.2",
36+
"@oclif/plugin-help": "^6.2.0",
37+
"@oclif/plugin-not-found": "^3.2.2",
38+
"@oclif/plugin-version": "^2.2.2",
39+
"@oclif/plugin-warn-if-update-available": "^3.1.4",
5140
"ansi-escapes": "^7.0.0",
5241
"chalk": "^5.3.0",
5342
"inquirer": "^9.2.20",
5443
"jsonwebtoken": "^9.0.2",
5544
"langchain": "^0.2.5",
5645
"ora": "^8.0.1",
57-
"undici": "^6.18.1"
46+
"undici": "^6.18.2"
5847
},
5948
"devDependencies": {
6049
"@babel/core": "^7.24.4",
@@ -70,7 +59,7 @@
7059
"glob": "^10.3.12",
7160
"husky": "^9.0.11",
7261
"lint-staged": "^15.2.5",
73-
"oclif": "^4.8.5",
62+
"oclif": "^4.13.0",
7463
"prettier": "^3.2.5",
7564
"prettier-plugin-packagejson": "^2.5.0",
7665
"ts-node": "^10.9.2",

0 commit comments

Comments
 (0)