-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "koii-task-template",
"version": "2.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "node tests/simulateTask.js",
"jest-test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node src/index.js",
"prod-debug": "nodemon --ignore 'dist/*' tests/prod-debug.js",
"webpack": "webpack",
"webpack:test": "webpack --config tests/test.webpack.config.js",
"webpack:prod": "webpack --mode production",
"lint": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@_koii/namespace-wrapper": "^1.0.14",
"@_koii/storage-task-sdk": "^1.2.7",
"@_koii/task-manager": "^0.0.29",
"@_koii/web3.js": "^0.1.11",
"@babel/preset-env": "^7.25.7",
"axios": "^1.7.7",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
"cross-spawn": "^7.0.3",
"diskusage": "^1.2.0",
"dotenv": "^16.3.0",
"dotenv-webpack": "^8.1.0",
"express": "^4.21.1",
"js-untar": "^2.0.0",
"node-stream-zip": "^1.15.0",
"nodemon": "^3.1.7",
"ollama": "^0.5.9",
"tail": "^2.2.6",
"tar": "^7.4.3",
"untar": "^0.2.9"
},
"devDependencies": {
"eslint": "^9.13.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"joi": "^17.9.2",
"prettier": "^3.3.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
},
"resolutions": {
"string-width": "4.2.3"
}
}