forked from MettaChain/PropChain-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@propchain/sdk",
"version": "0.1.0",
"description": "TypeScript SDK for PropChain smart contract integration — property tokenization, escrow, oracle, and more on Substrate/Polkadot",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./federation": {
"import": "./dist/federation.js",
"require": "./dist/federation.js",
"types": "./dist/federation.d.ts"
},
"./react": {
"import": "./dist/react.js",
"require": "./dist/react.js",
"types": "./dist/react.d.ts"
}
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ --ext .ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"propchain",
"polkadot",
"substrate",
"smart-contract",
"real-estate",
"tokenization",
"ink",
"web3",
"blockchain",
"sdk"
],
"author": "PropChain Team",
"license": "MIT",
"dependencies": {
"@polkadot/api": "^12.0.0",
"@polkadot/api-contract": "^12.0.0",
"@polkadot/extension-dapp": "^0.52.0",
"@polkadot/keyring": "^13.0.0",
"@polkadot/types": "^12.0.0",
"@polkadot/util": "^13.0.0",
"@polkadot/util-crypto": "^13.0.0"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.3.28",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MettaChain/PropChain-contract.git",
"directory": "sdk/frontend"
}
}