-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "@factmarket/contracts",
"version": "1.0.0",
"description": "Tact smart contracts for Fact Market — non-custodial binary prediction markets on TON",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Fact-Market/contracts"
},
"homepage": "https://fact.market",
"scripts": {
"build": "tact --config tact.config.json",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"audit:static": "npx misti tact.config.json",
"claim:verify": "tsx scripts/self-claim.ts --verify",
"claim:run": "tsx scripts/self-claim.ts --claim"
},
"dependencies": {
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^16.2.2"
},
"devDependencies": {
"@nowarp/misti": "^0.9.0",
"@tact-lang/compiler": "^1.6.13",
"@ton/sandbox": "^0.41.0",
"@ton/test-utils": "^0.12.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"prettier": "^3.2.0",
"ts-jest": "^29.0.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
}
}