-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.1 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.1 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
{
"name": "vesting-vault-opnet",
"version": "1.0.0",
"description": "Vesting Dashboard with Revenue Share — OPNet Bitcoin L1 DeFi",
"type": "module",
"scripts": {
"build": "asc src/index.ts --config asconfig.json --target debug",
"build:release": "asc src/index.ts --config asconfig.json --target release",
"build:vest": "asc src/index_vest.ts --config asconfig.json --target vest-debug",
"build:rev": "asc src/index_rev.ts --config asconfig.json --target rev-debug",
"build:tokens": "npm run build:vest && npm run build:rev",
"clean": "rm -rf build/*",
"lint": "eslint src/"
},
"author": "VibeCoding Challenge Week 2",
"license": "MIT",
"dependencies": {
"@assemblyscript/loader": "^0.28.9",
"@btc-vision/as-bignum": "^0.1.2",
"@btc-vision/assemblyscript": "^0.29.2",
"@btc-vision/btc-runtime": "^1.11.0-rc.10",
"@btc-vision/opnet-transform": "^1.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"typescript-eslint": "^8.56.1"
}
}