This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
100 lines (100 loc) · 2.7 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@radixdlt/wallet-sdk",
"version": "0.0.0",
"description": "Radix TypeScript Wallet SDK repository",
"homepage": "https://developers.radixdlt.com",
"keywords": [
"radix",
"wallet",
"sdk",
"dlt",
"web3",
"dApp",
"crypto",
"DeFi"
],
"authors": [
"Alex Stelea <alex.stelea@rdx.works>",
"Dawid Sowa <dawid.sowa@rdx.works>"
],
"bugs": "https://github.com/radixdlt/wallet-sdk/issues",
"license": "SEE LICENSE IN RADIX-SOFTWARE-EULA",
"engines": {
"node": ">=14.0.0"
},
"files": [
"RADIX-SOFTWARE-EULA",
"dist"
],
"main": "./dist/wallet-sdk.mjs",
"exports": {
".": {
"import": {
"types": "./dist/wallet-sdk.d.ts",
"default": "./dist/wallet-sdk.mjs"
},
"require": {
"types": "./dist/wallet-sdk.d.ts",
"default": "./dist/wallet-sdk.umd.js"
}
}
},
"types": "./dist/wallet-sdk.d.ts",
"scripts": {
"dev": "vite serve examples",
"build": "vite build && npm run build:types",
"build:types": "tsc --project tsconfig.types.json --emitDeclarationOnly",
"prettier": "prettier --cache --check lib",
"prettier:fix": "prettier --cache --write lib",
"lint": "eslint --cache lib",
"lint:fix": "eslint --cache --fix lib",
"preview": "vite preview",
"pre-push": "npm run build && npm run lint && npm run prettier && npm run test",
"prepare": "npx husky install",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@hirez_io/observer-spy": "^2.2.0",
"@radixdlt/semantic-release-config": "^1.1.0",
"@types/jest": "^29.5.1",
"@types/lodash.flow": "^3.5.7",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-preset-vite": "^1.1.0",
"buffer": "^6.0.3",
"eslint": "^8.40.0",
"eslint-config-alloy": "^5.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-tsconfig-paths": "^4.2.0"
},
"dependencies": {
"neverthrow": "^6.0.0",
"rxjs": "^7.8.1",
"tslog": "^4.8.2",
"zod": "^3.21.4"
},
"release": {
"extends": [
"@radixdlt/semantic-release-config"
]
},
"repository": {
"type": "git",
"url": "https://github.com/radixdlt/wallet-sdk.git"
}
}