-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "k-popo",
"description": "Fast and small Korean postposition resolver featuring a pleasant API",
"license": "MIT",
"version": "2.0.5",
"homepage": "https://github.com/alattalatta/k-popo",
"repository": {
"type": "git",
"url": "https://github.com/alattalatta/k-popo.git"
},
"scripts": {
"bench": "pnpm --filter benchmark bench",
"build": "vite build",
"test": "tsc -p tsconfig.test.json && vitest run"
},
"type": "module",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/types.d.ts",
"files": [
"dist",
"alert.png"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/types.d.ts"
},
"sideEffects": false,
"devDependencies": {
"@alattalatta/eslint-config": "^2.1.0",
"@alattalatta/prettier-config": "^2.1.0",
"@changesets/cli": "^2.27.7",
"@types/node": "^20.16.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5"
},
"prettier": "@alattalatta/prettier-config",
"keywords": [
"josa",
"korean",
"postposition",
"한국어",
"한글",
"조사"
],
"packageManager": "pnpm@9.8.0"
}