-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 KB
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
62
63
64
65
66
67
{
"name": "@_koii/create-task-cli",
"version": "1.1.14",
"description": "",
"keywords": [],
"author": "",
"license": "MIT",
"main": "./build/export.js",
"scripts": {
"start": "ts-node src/main.ts",
"start-oop": "ts-node src/main-oop.ts",
"pretty": "prettier --write \"**/*.ts\"",
"build": "tsc",
"lint": "eslint . --quiet --ext .ts,.tsx",
"postbuild": "cpy './src/kpl_task_contract/webasm_bincode_deserializer/**/*' ./build/kpl_task_contract/webasm_bincode_deserializer --parents",
"watch": "node watch-animation.js",
"watch-oop": "node watch-oop-animation.js",
"test-animation": "node test-food-animation.js",
"test-oop": "node test-oop-animation.js"
},
"dependencies": {
"@_koii/storage-task-sdk": "1.2.8",
"@_koii/web3.js": "^0.1.11",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "0.2.0",
"borsh": "^0.6.0",
"dotenv": "^16.0.1",
"mz": "^2.7.0",
"node-fetch": "2",
"node-stream-zip": "^1.15.0",
"ora": "5.4.1",
"prompts": "^2.4.2",
"read-yaml-file": "^2.1.0",
"web3.storage": "^4.4.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/eslint": "^7.2.4",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/mz": "^2.7.2",
"@types/node": "^18.11.19",
"@types/node-fetch": "^2.6.11",
"@types/prettier": "^2.1.5",
"@types/prompts": "^2.0.14",
"@types/unzipper": "^0.10.9",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cpy-cli": "^5.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.6.1",
"prettier": "^2.1.2",
"start-server-and-test": "^1.11.6",
"ts-node": "^10.0.0",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"create-task-cli": "./build/main.js"
}
}