-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@diceprotocol/sdk",
"version": "1.0.3",
"description": "TypeScript SDK for Dice Protocol v10 — verifiable commit-reveal RNG on Robinhood Chain",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && cp src/abi.json dist/abi.json",
"test": "npm run test:unit && npm run test:smoke",
"test:unit": "node --test dist/callbackGas.test.js dist/requestInfo.test.js",
"test:smoke": "node dist/test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"dice",
"randomness",
"oracle",
"rng",
"robinhood-chain",
"blockchain"
],
"license": "Apache-2.0",
"author": "Dice Protocol",
"dependencies": {
"ethers": "^6.13.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"@types/node": "^20.0.0"
},
"files": [
"dist",
"src/abi.json",
"src/index.ts",
"src/callbackGas.ts",
"src/requestInfo.ts",
"solidity",
"README.md",
"SKILL.md",
"LICENSE",
"NOTICE",
"package.json",
"remappings.txt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/diceprotocol/dice-protocol-sdk.git"
},
"homepage": "https://diceprotocol.world",
"bugs": {
"url": "https://github.com/diceprotocol/dice-protocol-sdk/issues"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./abi.json": "./dist/abi.json",
"./package.json": "./package.json",
"./solidity/*": "./solidity/*"
}
}