-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "@rgbpp-sdk/ckb",
"version": "0.6.0",
"scripts": {
"test": "vitest",
"build": "tsup",
"lint": "tsc && eslint --ext .ts {src,example}/* && prettier --check '{src,example}/**/*.{js,ts}'",
"lint:fix": "tsc && eslint --fix --ext .ts {src,example}/* && prettier --write '{src,example}/**/*.{js,ts}'",
"splitCells": "npx tsx example/paymaster.ts"
},
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"src",
"dist"
],
"dependencies": {
"@ckb-lumos/base": "^0.22.2",
"@ckb-lumos/codec": "^0.22.2",
"@spore-sdk/core": "^0.2.0-beta.6",
"@nervosnetwork/ckb-sdk-core": "0.109.3",
"@nervosnetwork/ckb-sdk-utils": "0.109.3",
"@nervosnetwork/ckb-types": "0.109.3",
"@rgbpp-sdk/service": "workspace:^",
"@exact-realty/multipart-parser": "^1.0.13",
"axios": "^1.6.8",
"camelcase-keys": "^7.0.2",
"js-sha256": "^0.11.0"
},
"devDependencies": {
"@ckb-lumos/molecule": "0.0.0-canary-66bbbfd-20240805132534"
},
"publishConfig": {
"access": "public"
}
}