-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 980 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 980 Bytes
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": "linebot-notify",
"description": "A library for easily sending push notifications to LINE Bot",
"version": "1.0.0",
"keywords": [
"LINE",
"Bot",
"Notify",
"Push"
],
"license": "MIT",
"homepage": "https://github.com/miso-develop/linebot-notify",
"bugs": "https://github.com/miso-develop/linebot-notify/issues",
"author": "Miso Tanaka <miso.develop@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14.x"
},
"private": false,
"scripts": {
"clean": "rimraf dist",
"c": "npm run clean",
"prebuild": "npm run clean",
"build": "npx tsc --sourceMap false --declarationMap false",
"b": "npm run build",
"prewatch": "npm run clean",
"watch": "npx tsc -w",
"w": "npm run watch",
"update": "npm i && npm audit fix && npm run build",
"u": "npm run update",
"": ""
},
"devDependencies": {
"@types/node": "^22.9.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
}
}