-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"isCognigyExtension": true,
"name": "reddit-explorer",
"version": "1.0.0",
"description": "Navigate subreddits easily. Developed using cognigy-hammer as backbone.",
"main": "build/index.js",
"scripts": {
"transpile": "tsc -p .",
"zip": "tar cfz reddit-explorer.tar.gz build/* package.json package-lock.json README.md icon.png",
"local:run": "rm -f ./src/assets/extension-map.js && npx ts-node ./src/index.ts",
"build:copy:assets": "cp -r src/assets build/assets",
"build": "npm run local:run && npx jest ./src && rm -rf ./build && npm run transpile && npm run build:copy:assets && node ./build/index.js && npm run zip"
},
"keywords": [
"cognigy",
"reddit",
"cognigy-ai",
"cognigy-hammer",
"extension"
],
"author": "tgbv",
"license": "MIT",
"private": true,
"engines": {
"node": "18.x.x",
"npm": "9.x.x"
},
"dependencies": {
"axios": "^1.5.1",
"cognigy-hammer": "^0.4.0",
"luxon": "^3.4.3"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/luxon": "^3.3.3",
"@types/node": "^13.13.15",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}