-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.19 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
43
{
"name": "libretranslate-ts",
"version": "0.5.12",
"description": "TypeScript (and JavaScript) SDK for the LibreTranslate API.",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.js",
"types": "dist/app.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/tderflinger/libretranslate-ts.git"
},
"bugs": {
"url": "https://github.com/tderflinger/libretranslate-ts/issues"
},
"homepage": "https://github.com/tderflinger/libretranslate-ts",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Thomas Derflinger",
"url": "https://www.tderflinger.com"
},
"license": "MIT",
"dependencies": {
"axios": "1.8.3"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-react": "7.23.3",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@types/node": "20.11.19",
"rollup": "2.79.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-typescript2": "0.36.0",
"tslib": "2.6.2",
"typescript": "5.8.2"
}
}