-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.49 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@mindfullabai/webhook-notifications",
"version": "1.2.0",
"description": "Client TypeScript/JavaScript per notifiche webhook MindfullabAI",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./js": {
"import": "./dist-js/index.esm.js",
"require": "./dist-js/index.js"
}
},
"files": [
"dist/",
"dist-js/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:ts && npm run build:js",
"build:ts": "tsc && rollup -c rollup.config.ts.js",
"build:js": "tsc -p tsconfig.js.json && rollup -c rollup.config.js.js",
"dev": "tsc --watch",
"test": "jest",
"test:ts": "jest --testPathPattern=__tests__/typescript",
"test:js": "jest --testPathPattern=__tests__/javascript",
"clean": "rimraf dist dist-js",
"prepublishOnly": "npm run clean && npm run build && npm test",
"start:example": "node examples/javascript/node-commonjs-example.js",
"start:express": "node examples/javascript/express-example.js"
},
"keywords": [
"webhook",
"notifications",
"telegram",
"mindfullabai",
"typescript",
"javascript",
"node",
"browser"
],
"author": "MindfullabAI <mario@mindfullabai.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mindfullabai/webhook-notifications.git"
},
"bugs": {
"url": "https://github.com/mindfullabai/webhook-notifications/issues"
},
"homepage": "https://github.com/mindfullabai/webhook-notifications#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"express": "^4.18.0",
"jest": "^29.0.0",
"rimraf": "^5.0.0",
"rollup": "^4.0.0",
"ts-jest": "^29.1.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}