-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.91 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.91 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
{
"name": "@rulesorg/sdk-core",
"version": "1.4.33",
"description": "An SDK to build applications on top of Rules",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"browser": "./dist/index.global.js",
"types": "./dist/index.d.ts"
}
},
"bugs": {
"url": "https://github.com/ruleslabs/sdk-core/issues"
},
"homepage": "https://github.com/ruleslabs/sdk-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ruleslabs/sdk-core.git"
},
"author": "0xChqrles",
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "tsup && npm run build:esm && npm run build:iife && npm run build:dts",
"build:esm": "tsup --clean false --format esm --platform node",
"build:iife": "tsup --clean false --format iife --platform browser",
"build:dts": "tsup --clean false --dts-only",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/big.js": "^6.1.3",
"@types/ms": "^0.7.31",
"alchemy-sdk": "^2.8.3",
"ethers": "^6.8.0",
"starknet": "^5.21.1",
"tsup": "^6.7.0",
"typescript": "^5.2.2"
},
"dependencies": {
"big.js": "^6.2.1",
"decimal.js-light": "^2.5.1",
"jsbi": "^4.1.0",
"ms": "^2.1.3",
"multiformats": "^9.6.4",
"tiny-invariant": "^1.2.0",
"toformat": "^2.0.0",
"typestub-ipfs-only-hash": "^4.0.0"
},
"peerDependencies": {
"alchemy-sdk": "^2.8.3",
"ethers": "^6.3.0",
"starknet": "^5.10.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}