-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 978 Bytes
/
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
{
"name": "sudachi-synonyms-dictionary",
"version": "14.0.0",
"description": "sudachi's synonyms dictionary",
"keywords": [
"dictionary",
"sudachi",
"synonyms",
"japanese"
],
"homepage": "https://github.com/azu/sudachi-synonyms-dictionary",
"bugs": {
"url": "https://github.com/azu/sudachi-synonyms-dictionary/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/sudachi-synonyms-dictionary.git"
},
"license": "Apache-2.0",
"author": "azu",
"files": [
"index.d.ts",
"index.js",
"index.modules.js",
"sudachi-synonyms-dictionary.json"
],
"main": "./index.js",
"module": "./index.module.js",
"types": "./index.d.ts",
"exports": {
"require": "./index.js",
"import": "./index.module.js"
},
"scripts": {
"update": "node update.js",
"test": "node test/index.test.js"
},
"devDependencies": {
"semver": "^7.6.0",
"sudachi-synonyms-parser": "^1.0.3"
}
}