-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 805 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 805 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
{
"name": "en-dictionary",
"version": "2.0.3",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/open-language/en-dictionary.git"
},
"author": "Sudhanshu Raheja <sudhanshu@leftshift.io>",
"license": "MIT",
"keywords": [
"dictionary",
"wordnet",
"natural-language-processing",
"english-language",
"language",
"nlp"
],
"devDependencies": {
"@types/bun": "^1.0.12",
"bun-plugin-dts": "^0.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"scripts": {
"publish": "npm pkg fix; npm publish",
"build": "bun run build.mjs"
},
"dependencies": {
"en-wordnet": "^2.0.11",
"reiterator": "^1.1.4"
},
"files": [
"dist"
]
}