-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "korean-gotong",
"version": "1.0.10",
"description": "한글이 인생에 고통을 선사할 때마다 기능이 추가될 예정입니다.",
"main": "dist/index.js",
"files": [
"dist",
"index.d.ts",
"hangulCodes.d.ts",
"hanjaNumberTools.d.ts",
"particleTools.d.ts",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx babel src --out-dir dist --extensions \".ts\"",
"postbuild": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Heartade/korean-gotong.git"
},
"keywords": [
"korean",
"hangul",
"한글",
"한국어",
"은는이가",
"을를",
"맞춤법",
"숫자"
],
"author": "Daniel Soohan Park",
"license": "MIT",
"bugs": {
"url": "https://github.com/Heartade/korean-gotong/issues"
},
"homepage": "https://github.com/Heartade/korean-gotong#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.16.7",
"typescript": "^4.6.3"
},
"exports": {
".": "./dist",
"./hanjaNumberTools": "./dist/hanjaNumberTools",
"./particleTools": "./dist/particleTools",
"./hangulCodes": "./dist/hangulCodes",
"./dist/": "./dist/"
}
}