-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.09 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
{
"name": "@radixdlt/radix-engine-toolkit",
"version": "1.0.5",
"description": "A TypeScript wrapper for the Radix Engine Toolkit that provides many of the necessary tools to interact with the Radix ledger",
"types": "./dist/index.d.ts",
"main": "./dist/radix-engine-toolkit.umd.js",
"module": "./dist/radix-engine-toolkit.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/radix-engine-toolkit.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/radix-engine-toolkit.umd.js"
}
}
},
"readme": "README.md",
"keywords": [
"Radix",
"ledger",
"transaction",
"radixdlt"
],
"homepage": "https://github.com/radixdlt/typescript-radix-engine-toolkit",
"repository": {
"type": "git",
"url": "https://github.com/radixdlt/typescript-radix-engine-toolkit"
},
"bugs": "https://github.com/radixdlt/typescript-radix-engine-toolkit/issues",
"files": [
"dist"
],
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf dist; vite build && yarn build:types",
"build:types": "tsc --project tsconfig.types.json --emitDeclarationOnly",
"format": "prettier --write .",
"test": "vitest",
"ci": "yarn build && vitest run",
"prep": "yarn run format; yarn run build; yarn run test",
"license": "python3 add_license.py"
},
"devDependencies": {
"@rollup/plugin-wasm": "6.1.2",
"@types/node": "18.15.11",
"@vitest/ui": "0.30.1",
"happy-dom": "9.1.0",
"prettier": "2.8.7",
"prettier-plugin-organize-imports": "3.2.2",
"ts-node": "10.9.1",
"typescript": "5.0.2",
"vite": "4.2.1",
"vitest": "0.29.8"
},
"dependencies": {
"@noble/ed25519": "2.0.0",
"@noble/hashes": "1.3.0",
"@types/secp256k1": "4.0.3",
"@types/secure-random": "1.1.0",
"blakejs": "1.2.1",
"change-case": "4.1.2",
"decimal.js": "10.4.3",
"reflect-metadata": "0.1.13",
"secp256k1": "5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"overrides": {
"elliptic": "6.5.7"
}
}