-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 3.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "alkanes",
"description": "alkanes metaprotocol",
"version": "0.1.0",
"bin": {
"alkanes": "lib/esm/alkanes.js"
},
"files": [
"lib",
"src.ts"
],
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "cross-env node jsonrpc/bin/jsonrpc",
"asbuild:debug": "asc assembly/indexer/index.ts --target debug --enable threads --config asconfig.json",
"asbuild:release": "asc assembly/indexer/index.ts --target release --config asconfig.json",
"asbuild:test": "asc assembly/index.ts --target release --config asconfig.json",
"bundleup": "wasm-merge build/debug.wasm alkanes runtime/target/wasm32-unknown-unknown/debug/alkanes_runtime.wasm alkanes_runtime -o build/combined.wasm -n -q -sec --enable-bulk-memory",
"metadce": "wasm-metadce build/combined-out.wasm --graph-file metadce/graph.json -o build/combined-metadce.wasm --all-features > /dev/null",
"build": "npm-run-all build:protoc build:ts",
"build:ts": "tsc && tsc -p tsconfig.esm.json",
"build:jsonrpc": "cross-env node scripts/build-jsonrpc.js",
"build:protoc": "protoc --proto_path=proto/ proto/*.proto --ts_out src.ts/proto --ts_opt ts_nocheck",
"build:release": "cd build; npm run build:release",
"lint": "prettier --print-width 100 --single-quote --check src",
"format": "prettier --print-width 100 --single-quote --write src",
"build:debug:preloader": "npm run asbuild:preloader --sharedMemory",
"prettier:assemblyscript": "prettier --write ./assembly/**/*.ts --plugin assemblyscript-prettier",
"prettier:ts": "prettier --write ./src.ts/**/*.ts",
"prettier": "npm-run-all prettier:ts",
"test": "NODE_NO_WARNINGS=1 ts-mocha --timeout 0 ./tests/**.spec.ts",
"inspect": "wasm-dis",
"opt": "wasm-opt build/combined.wasm --multi-memory-lowering -n -o build/combined-out.wasm",
"full-test-build": "npm-run-all build bundleup opt metadce"
},
"sideEffects": false,
"dependencies": {
"@magiceden-oss/runestone-lib": "^1.0.2",
"@protobuf-ts/protoc": "^2.9.4",
"@protobuf-ts/runtime": "^2.9.4",
"@scure/base": "~1.1.5",
"@scure/btc-signer": "^1.4.0",
"binaryen": "^118.0.0",
"bip32": "^5.0.0-rc.0",
"bip39": "^3.1.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"enquirer": "2.4.1",
"ethers": "^6.13.4",
"express": "^4.21.2",
"google-protobuf": "^3.21.4",
"lodash": "^4.17.21",
"micro-packed": "~0.6.2",
"postinstall": "^0.10.3"
},
"devDependencies": {
"@noble/curves": "^1.4.0",
"@paulmillr/jsbt": "0.1.0",
"@scure/btc-signer": "^1.4.0",
"@types/cors": "^2.8.17",
"@types/fs-extra": "^11.0.4",
"@types/google-protobuf": "^3.15.12",
"@types/leb128": "^0.0.0",
"@types/lodash": "^4.17.13",
"@types/node": "20.12.7",
"assemblyscript": "0.26.7",
"assemblyscript-prettier": "^3.0.1",
"bitcoin-block": "^2.0.2",
"bitcoinjs-lib": "https://github.com/bitcoinjs/bitcoinjs-lib",
"chai": "4",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"fs-extra": "^11.2.0",
"ioredis": "^5.4.1",
"leb128": "^0.0.5",
"micro-bmark": "0.3.1",
"micro-ordinals": "^0.1.1",
"micro-should": "0.4.0",
"mocha": "^10.3.0",
"nice-repl": "^0.1.2",
"npm-run-all": "^4.1.5",
"prettier": "3.3.2",
"protoc-gen-ts": "^0.8.7",
"rlp": "^3.0.0",
"tiny-secp256k1": "^2.2.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "5.5.2",
"winston": "^3.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kungfuflex/alkanes"
},
"license": "MIT"
}