-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
{
"name": "pastel-inference-js-client",
"version": "1.0.0",
"description": "A JavaScript client for interacting with the Pastel Network and performing inference tasks.",
"main": "server.js",
"scripts": {
"start": "node update.js",
"dev": "nodemon server.js",
"test": "jest",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"pastel",
"inference",
"blockchain",
"messaging",
"credit-pack",
"llm"
],
"author": "Jeff Emanuel <[email protected]>",
"license": "MIT",
"dependencies": {
"@xterm/xterm": "^5.5.0",
"archiver": "^7.0.1",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"joi": "^17.13.3",
"multer": "^1.4.5-lts.1",
"node-persist": "^4.0.3",
"p-limit": "^6.1.0",
"ping": "^0.4.4",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"winston": "^3.14.2",
"ws": "^8.18.0",
"zstd-codec": "^0.1.5"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"globals": "^15.10.0",
"jest": "^28.1.3",
"nodemon": "^3.1.7",
"prettier": "^2.8.8"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pastelnetwork/pastel_inference_js_client.git"
},
"bugs": {
"url": "https://github.com/pastelnetwork/pastel_inference_js_client/issues"
},
"homepage": "https://github.com/pastelnetwork/pastel_inference_js_client#readme"
}