-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "line-api",
"version": "0.2.4",
"description": "Simple LINE api client for Node.js written in TypeScript",
"author": "Yuhsak Inoue",
"keywords": [
"LINE",
"API",
"bot",
"sdk",
"notify"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Yuhsak/line-api.git"
},
"bugs": {
"url": "https://github.com/Yuhsak/line-api/issues"
},
"homepage": "https://github.com/Yuhsak/line-api#readme",
"files": [
"lib",
"!lib/**/*.tsbuildinfo",
"src",
"!**/*/tempCodeRunnerFile.*",
"tsconfig.json",
"tsconfig.esm.json"
],
"main": "lib/common/index.js",
"types": "lib/common/index.d.ts",
"module": "lib/esm/index.js",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "tsc -b tsconfig.json tsconfig.esm.json",
"watch": "npm run build -- --watch",
"start": "npm run watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@types/node-fetch": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.8.3"
},
"dependencies": {
"form-data-encoder": "^1.7.2",
"formdata-node": "^4.4.1",
"node-fetch": "^2.6.7"
}
}