-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 1.89 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "analyze-desumasu-dearu",
"version": "6.0.0",
"description": "文の敬体(ですます調)、常体(である調)を解析",
"keywords": [
"japanese",
"analyze"
],
"homepage": "https://github.com/textlint-ja/analyze-desumasu-dearu",
"bugs": {
"url": "https://github.com/textlint-ja/analyze-desumasu-dearu/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-ja/analyze-desumasu-dearu.git"
},
"license": "MIT",
"author": "azu",
"type": "module",
"exports": {
".": {
"import": {
"types": "./module/analyze.d.ts",
"default": "./module/analyze.js"
},
"default": "./module/analyze.js"
},
"./package.json": "./package.json"
},
"main": "./module/analyze.js",
"types": "./module/analyze.d.ts",
"directories": {
"test": "test"
},
"files": [
"bin/",
"module/",
"src/"
],
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"example": "cd example && npm it",
"prepare": "git config --local core.hooksPath .githooks",
"prepublishOnly": "npm run clean && npm run build",
"test": "tsx --test test/analyze-test.ts",
"watch": "tsc --build --watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"kuromojin": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"lint-staged": "^10.5.4",
"prettier": "^2.8.8",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"email": "azuciao@gmail.com",
"packageManager": "npm@10.9.2+sha512.8ab88f10f224a0c614cb717a7f7c30499014f77134120e9c1f0211ea3cf3397592cbe483feb38e0c4b3be1c54e347292c76a1b5edb94a3289d5448484ab8ac81"
}