-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
73
74
75
76
{
"name": "enconvo.translator",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"tsup": "tsup",
"start": "node src/index.js",
"dist": "node dist/main.js",
"lint": "eslint src",
"lint:fix": "npm run lint --fix",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --list-different \"**/*.ts\"",
"build": "node build.js && node polyfill.js",
"deploy": "npm run build && cp -r dist/* ~/Library/Application\\ Support/Enconvo/extension/enconvo.translator",
"publish": "webpack && mv dist enconvo.translator && zip -r enconvo.translator.zip enconvo.translator && rm -rf enconvo.translator",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ysnows/enconvo.translator.git"
},
"author": "ysnows",
"license": "MIT",
"bugs": {
"url": "https://github.com/ysnows/enconvo.translator/issues"
},
"homepage": "https://github.com/ysnows/enconvo.translator#readme",
"sideEffects": [
"*.js"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.5.4",
"@mozilla/readability": "^0.4.4",
"cheerio": "^1.0.0-rc.12",
"crypto-browserify": "^3.12.0",
"enconvo": "^1.6.5",
"js-tiktoken": "^1.0.7",
"jsdom": "^22.1.0",
"langchain": "^0.0.114",
"langchainplus-sdk": "^0.0.19",
"langsmith": "^0.0.9",
"openai": "^3.3.8",
"p-queue": "^7.3.4",
"p-retry": "^5.1.2",
"uuid": "^9.0.0",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.20.4"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@tsconfig/recommended": "^1.0.2",
"@types/js-yaml": "^4",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"esmify": "^2.1.1",
"ignore-webpack-plugin": "^0.3.0",
"prettier": "^2.8.3",
"tinyify": "^4.0.0",
"tsup": "^7.1.0",
"tsx": "^3.12.3",
"typescript": "^5.0.4",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4"
}
}