-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "chaltteok",
"version": "0.2.2",
"description": "자연스러운 한국어를 꿈꾸는 프로그래밍 언어",
"scripts": {
"build": "nearleyc src/coarse/grammar.ne -o src/coarse/grammar.ts && node ./preludeLoader.js && microbundle",
"dev": "microbundle watch --no-compress -f cjs",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dragonteros/chaltteok.git"
},
"author": "dragonteros",
"license": "MIT",
"bugs": {
"url": "https://github.com/dragonteros/chaltteok/issues"
},
"homepage": "https://github.com/dragonteros/chaltteok#readme",
"dependencies": {
"eomi-js": "^0.2.3",
"josa": "^3.0.1",
"kor-to-number": "^1.1.5",
"moo": "^0.5.1",
"nearley": "^2.20.1",
"readline-sync": "^1.4.10",
"string-width": "^5.1.2"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/moo": "^0.5.5",
"@types/nearley": "^2.11.2",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"microbundle": "^0.14.0",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.3.5"
},
"type": "module",
"source": "./src/index.ts",
"exports": "./dist/chaltteok.modern.js",
"main": "./dist/chaltteok.js",
"module": "./dist/chaltteok.module.js",
"unpkg": "./dist/chaltteok.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"sideEffects": false
}