-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 981 Bytes
/
package.json
File metadata and controls
54 lines (54 loc) · 981 Bytes
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
{
"name": "node-dict",
"version": "3.0.0",
"description": "Easy to translate in the terminal",
"type": "module",
"bin": {
"dict": "./bin/dict.mjs"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"packageManager": "pnpm@8.10.5",
"scripts": {
"test": "tsx test/index.test.ts",
"build": "tsup",
"dev": "NODE_ENV=development tsx src/cli.ts"
},
"keywords": [
"dict",
"terminal dict",
"translate"
],
"dependencies": {
"axios": "^1.6.8",
"ora": "^8.0.1"
},
"author": "satrong",
"bugs": {
"url": "https://github.com/satrong/node-dict/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:satrong/node-dict.git"
},
"engines": {
"node": ">= 16.0.0"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^20.12.7",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"files": [
"dist",
"bin"
]
}