-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.45 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
{
"name": "agent-text2speech-js",
"version": "0.1.5",
"description": "",
"private": true,
"author": "Nevermined <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf ./dist/ ./doc/ ./.nyc_output",
"prebuild": "rimraf dist",
"build": "yarn build:tsc",
"build:tsc": "tsc --sourceMap",
"dev": "ts-node src/main.ts",
"start:main": "ts-node src/main.ts",
"start:agent2agent": "ts-node src/agent2agent.ts",
"start:register": "ts-node src/register.ts",
"start:query": "ts-node src/query.ts",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --parser typescript --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@nevermined-io/payments": "0.7.5",
"openai": "4.68.4",
"ipfs-http-client-lite": "0.3.0",
"pino": "^8.15.4",
"pino-pretty": "^11.2.2"
},
"devDependencies": {
"@types/node": "^20.1.0",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.56.0",
"eslint-config-nevermined": "^0.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-config-next": "^14.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^3.3.2",
"source-map-support": "^0.5.20",
"node-fetch": "^2.6.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^3.10.1",
"typescript": "~5.4.5"
}
}