-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
86 lines (86 loc) · 2.15 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "es-hangul",
"version": "2.2.3",
"keywords": [
"한글",
"한국어",
"텍스트 처리",
"초성 검색",
"조사 처리",
"문자 분해",
"한국어 처리",
"hangul",
"korean",
"text processing",
"korean-language"
],
"repository": "github:toss/es-hangul",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"type": "commonjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"workspaces": [
".",
"docs",
"benchmarks"
],
"scripts": {
"attw": "attw --pack",
"build": "tsup",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version",
"packlint": "packlint sort -R",
"publint": "publint --strict",
"test": "vitest run --coverage --typecheck",
"test:watch": "vitest --ui --coverage --typecheck",
"typecheck": "tsc --noEmit",
"docs:dev": "yarn workspace docs dev",
"docs:build": "yarn workspace docs build",
"docs:start": "yarn workspace docs start",
"bench": "vitest bench"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@cspell/eslint-plugin": "^8.10.0",
"@netlify/plugin-nextjs": "^5.0.0",
"@types/broken-link-checker": "^0",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitest/coverage-istanbul": "^2.1.2",
"@vitest/ui": "^2.1.2",
"broken-link-checker": "^0.7.8",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"packlint": "^0.2.4",
"prettier": "^3.2.5",
"publint": "^0.2.7",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^2.1.2"
},
"publishConfig": {
"access": "public"
},
"import": "./dist/index.mjs"
}