-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "@smartledger/scriptmin",
"version": "0.1.3",
"description": "Bitcoin Script minimizer: byte profiler, symbolic stack IR, stack scheduler and superoptimizer with proven-equivalent rewrites",
"keywords": [
"bitcoin",
"bsv",
"bitcoin-script",
"script",
"optimizer",
"minifier",
"superoptimizer",
"stack-machine",
"smart-contracts"
],
"homepage": "https://github.com/codenlighten/scriptmin#readme",
"bugs": {
"url": "https://github.com/codenlighten/scriptmin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codenlighten/scriptmin.git"
},
"license": "MIT",
"author": "codenlighten <greg@smartledger.technology>",
"main": "src/index.js",
"bin": {
"scriptmin": "bin/scriptmin.js"
},
"files": [
"src/",
"bin/",
"examples/",
"docs/"
],
"scripts": {
"test": "node --test test/*.test.js",
"bench": "node examples/bench.js 50,500,2000 medium pick && node examples/bench-tower.js 1,2 medium lastuse"
},
"engines": {
"node": ">=20.19"
},
"peerDependencies": {
"@smartledger/bsv": "^9.10.1"
},
"devDependencies": {
"@smartledger/bsv": "^9.11.2"
}
}