-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.03 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
{
"name": "blockset-js",
"version": "0.3.3",
"description": "BLOCKSET on JavaScript",
"keywords": ["blockset", "content-addressable", "storage", "cdt", "content-dependent-tree", "hash"],
"main": "index.mjs",
"scripts": {
"tsc": "tsc",
"blockset-prepare": "blockset add ./examples/list.txt && blockset add ./examples/list2.txt && blockset add ./examples/repeat.txt",
"blockset-prepare-win": "blockset add ./examples/list.txt --to-posix-eol && blockset add ./examples/list2.txt --to-posix-eol && blockset add ./examples/repeat.txt --to-posix-eol",
"test": "tsc & node --trace-uncaught test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datablockset/blockset-js.git"
},
"author": "Denys Shandar",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/datablockset/blockset-js/issues"
},
"homepage": "https://github.com/datablockset/blockset-js#readme",
"devDependencies": {
"@types/node": "^20.8.6",
"typescript": "^5.2.2"
},
"bin": "./cli.mjs"
}