-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "@translation-master/node",
"type": "module",
"version": "0.3.7",
"description": "Node.js translation library powered by Transformers.js with ONNX Runtime",
"author": "hackycy <hackycy@outlook.com>",
"license": "MIT",
"homepage": "https://github.com/hackycy/translation-master#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hackycy/translation-master.git"
},
"bugs": "https://github.com/hackycy/translation-master/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "eslint",
"prepublishOnly": "nr build",
"release": "bumpp",
"test": "vitest --passWithNoTests",
"typecheck": "tsc"
},
"dependencies": {
"@huggingface/transformers": "catalog:inlined",
"@translation-master/core": "workspace:*"
}
}