forked from cryptape/ckb-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 817 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 817 Bytes
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
{
"name": "ckb-tthw",
"version": "0.1.4",
"description": "Time to `Hello World` on CKB",
"main": "index.js",
"scripts": {
"start": "ts-node ./index.ts",
"lint": "rome check . --apply",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flouse/ckb-tthw.git"
},
"keywords": [
"ckb",
"tutorial"
],
"type": "commonjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/Flouse/ckb-tthw/issues"
},
"homepage": "https://github.com/Flouse/ckb-tthw#readme",
"engines": {
"node": ">=18.15.0"
},
"dependencies": {
"@ckb-lumos/lumos": "0.20.0-alpha.3"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"rome": "12.1.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}