-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "@remote-kakao/core",
"version": "2.0.0-alpha.3",
"description": "A Node.js module that helps you create KakaoTalk bots.",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./*": {
"require": "./dist/cjs/*/index.js",
"import": "./dist/esm/*/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "concurrently \"$npm_execpath run build:esm\" \"$npm_execpath run build:cjs\"",
"watch": "concurrently \"$npm_execpath run build:esm -w\" \"$npm_execpath run build:cjs -w\"",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig-cjs.json",
"example": "tsx --watch example/index.ts",
"prepublishOnly": "$npm_execpath run build"
},
"author": "thoratica <me@tica.fun>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.3",
"concurrently": "^7.6.0",
"rome": "^11.0.0",
"tsx": "^3.12.6",
"typescript": "^5.0.2"
},
"dependencies": {
"typed-emitter": "^2.1.0"
}
}