-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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": "@wecandobetter/phenomenal-ai",
"version": "0.0.4",
"description": "Phenomenal AI is a conversational AI that can be used to create chatbots, voice assistants, and more.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register test/**/*.test.ts",
"test-with-coverage": "nyc --reporter=lcov npm test"
},
"keywords": [
"ai",
"artificial intelligence",
"chatbot",
"voice assistant",
"voice",
"assistant",
"phenomenal",
"phenomenal ai",
"phenomenal-ai",
"phenomenalai"
],
"files": [
"dist",
"templates"
],
"author": "We Can Do Better <contact@wcdb.life> (https://wcdb.life)",
"contributors": [
{
"name": "Michiel van der Velde",
"email": "michiel@wcdb.life",
"url": "https://michielvdvelde.nl"
}
],
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/mustache": "^4.2.2",
"@types/node": "^20.4.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"mustache": "^4.2.0"
}
}