-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.33 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@filoz/synapse-react",
"version": "0.2.3",
"description": "React hooks for interacting with Filecoin Onchain Cloud smart contracts",
"repository": {
"type": "git",
"url": "git+https://github.com/FilOzone/synapse-sdk.git"
},
"keywords": [
"filecoin",
"synapse",
"filecoin pay",
"filecoin onchain cloud",
"web3",
"react",
"hooks"
],
"author": "Hugo Dias <hugomrdias@gmail.com>",
"license": "Apache-2.0 OR MIT",
"bugs": {
"url": "https://github.com/FilOzone/synapse-sdk/issues"
},
"homepage": "https://github.com/FilOzone/synapse-sdk/tree/main/packages/synapse-react",
"type": "module",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./filsnap": {
"types": "./dist/src/filsnap.d.ts",
"default": "./dist/src/filsnap.js"
}
},
"typesVersions": {
"*": {
"filsnap": [
"./dist/src/filsnap"
]
}
},
"files": [
"src",
"dist/src",
"dist/src/**/*.d.ts",
"dist/src/**/*.d.ts.map"
],
"scripts": {
"build": "wireit",
"lint": "wireit",
"lint:fix": "biome check --fix ."
},
"wireit": {
"build": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"dist/**"
],
"dependencies": [
"../synapse-core:build",
"../synapse-sdk:build"
]
},
"lint": {
"command": "biome check .",
"files": [
"src/**/*.ts",
"../../biome.json"
],
"output": [],
"dependencies": [
"build"
]
}
},
"dependencies": {
"@filoz/synapse-core": "workspace:^",
"@filoz/synapse-sdk": "workspace:^",
"@hugomrdias/filsnap-adapter": "^3.3.8"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@types/node": "catalog:",
"type-fest": "^5.7.0",
"typescript": "catalog:",
"viem": "catalog:"
},
"publishConfig": {
"access": "public"
},
"msw": {
"workerDirectory": [
"src/test/mocks"
]
},
"peerDependencies": {
"@tanstack/react-query": "5.x",
"@wagmi/core": "3.x",
"viem": "2.x",
"wagmi": "3.x"
}
}