-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.3 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
{
"name": "@birchill/tiny-segmenter",
"version": "1.0.0",
"description": "Lightweight Japanese word segmenter",
"keywords": [
"segmenter",
"Japanese"
],
"author": "Taku Kudo",
"license": "BSD-3-Clause",
"scripts": {
"build": "tsup",
"test": "vitest run",
"prepublishOnly": "tsup",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birchill/tiny-segmenter.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/birchill/tiny-segmenter/issues"
},
"files": [
"dist/**"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"devDependencies": {
"@release-it/conventional-changelog": "8.0.1",
"husky": "9.0.11",
"knip": "5.23.1",
"lint-staged": "15.2.7",
"prettier": "3.3.2",
"release-it": "17.4.0",
"tsup": "8.1.0",
"typescript": "5.5.2",
"vitest": "1.6.0",
"vitest-github-actions-reporter": "0.11.1"
}
}