-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 829 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 829 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
{
"name": "@creadi/tchatche-react",
"description": "Simple chat bot. Supports button and text input responses.",
"version": "1.0.5",
"author": "Creadi AG <info@creadi.ch>",
"dependencies": {
"redux": "^4.0.4"
},
"devDependencies": {
"@types/react": "^16.9.3",
"@types/redux": "^3.6.0",
"react": "^16.9.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"keywords": [
"chat bot"
],
"license": "GPL-2.0",
"main": "dist/index.js",
"peerDependencies": {
"react": "^16.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/creadi/tchatche-react.git"
},
"scripts": {
"build": "tsc && cp src/types.d.ts dist/types.d.ts",
"prepublish": "npm run build",
"test": "echo \"Success. Tests passed.\" && exit 0"
},
"types": "dist/index.d.ts"
}