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 0
/
package.json
90 lines (90 loc) · 2.57 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
{
"name": "@radixdlt/radix-connect-schemas",
"version": "0.0.0",
"description": "Data schemas for Radix Connect",
"homepage": "https://developers.radixdlt.com",
"keywords": [
"radix",
"connect",
"ledger",
"schemas",
"dlt",
"web3",
"dApp",
"crypto",
"DeFi"
],
"authors": [
"Alex Stelea <alex.stelea@rdx.works>",
"Dawid Sowa <dawid.sowa@rdx.works>"
],
"bugs": "https://github.com/radixdlt/radix-connect-schemas/issues",
"license": "SEE LICENSE IN RADIX-SOFTWARE-EULA",
"engines": {
"node": ">=14.0.0"
},
"files": [
"RADIX-SOFTWARE-EULA",
"dist"
],
"main": "./dist/radix-connect-schemas.mjs",
"exports": {
".": {
"import": {
"types": "./dist/radix-connect-schemas.d.ts",
"default": "./dist/radix-connect-schemas.mjs"
},
"require": {
"types": "./dist/radix-connect-schemas.d.ts",
"default": "./dist/radix-connect-schemas.umd.js"
}
}
},
"types": "./dist/radix-connect-schemas.d.ts",
"scripts": {
"build": "vite build && npm run build:types",
"build:types": "tsc --project tsconfig.types.json --emitDeclarationOnly",
"prettier": "prettier --cache --check src",
"prettier:fix": "prettier --cache --write src",
"lint": "eslint --cache \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"src/**/*.{ts,tsx}\"",
"preview": "vite preview",
"pre-push": "npm run build && npm run lint && npm run prettier && npm run test",
"prepare": "cd .. && npx husky install",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/elliptic": "^6.4.14",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-preset-vite": "^1.1.0",
"eslint": "^8.48.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.3",
"semantic-release": "^21.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.0"
},
"dependencies": {
"neverthrow": "^6.0.0",
"zod": "^3.22.2"
},
"repository": {
"type": "git",
"url": "https://github.com/radixdlt/radix-connect-schemas.git"
}
}