-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.25 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
{
"name": "oracle-sdk",
"version": "0.1.0",
"description": "Interact with ease with the eclipse contracts",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.mjs",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"example": "ts-node examples/basic-usage.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EclipseAleo/oracle-sdk.git"
},
"keywords": [
"Eclipse",
"Aleo",
"Oracle",
"SDK"
],
"author": "Eclipse Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/EclipseAleo/oracle-sdk/issues"
},
"homepage": "https://github.com/EclipseAleo/oracle-sdk#readme",
"devDependencies": {
"@types/node": "^22.15.29",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@scure/base": "^1.2.6"
}
}