-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "aigc-detector",
"version": "1.0.9",
"description": "Detect if content is generated by AI",
"keywords": [
"aigc",
"oclif",
"detector"
],
"homepage": "https://github.com/crazyurus/aigc-detector",
"bugs": "https://github.com/crazyurus/aigc-detector/issues",
"repository": "crazyurus/aigc-detector",
"license": "GPL-3.0",
"author": "Crazy Urus",
"type": "module",
"exports": "./lib/index.js",
"types": "./dist/index.d.ts",
"bin": {
"aigc-detector-dev": "./bin/dev.js",
"aigc-detector": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "rm -rf dist && tsc -b && node ./scripts/babel.js && oclif manifest",
"prepare": "husky"
},
"dependencies": {
"@langchain/community": "^0.2.6",
"@langchain/core": "^0.2.6",
"@langchain/openai": "^0.1.1",
"@oclif/core": "^4.0.2",
"@oclif/plugin-help": "^6.2.0",
"@oclif/plugin-not-found": "^3.2.2",
"@oclif/plugin-version": "^2.2.2",
"@oclif/plugin-warn-if-update-available": "^3.1.4",
"ansi-escapes": "^7.0.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.20",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.2.5",
"ora": "^8.0.1",
"undici": "^6.18.2"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@oclif/prettier-config": "^0.2.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^18.11.9",
"eslint": "^8.56.0",
"eslint-config-oclif": "^5.1.3",
"eslint-config-oclif-typescript": "^3.1.6",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.3.12",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"oclif": "^4.13.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}