generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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": "obsidian-lilypad",
"version": "1.0.0",
"description": "Run Edge Compute jobs through blockchain smart contracts with lilypad",
"main": "main.tsx",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"debug": "^4.3.4",
"esbuild": "0.17.3",
"hardhat": "^2.17.2",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^13.0.1",
"@chainsafe/libp2p-yamux": "^5.0.0",
"@helia/dag-cbor": "^1.0.2",
"@helia/dag-json": "^1.0.2",
"@helia/unixfs": "^1.4.1",
"@ipld/dag-json": "^10.1.4",
"@libp2p/delegated-content-routing": "^4.0.9",
"@libp2p/delegated-peer-routing": "^4.0.12",
"blockstore-core": "^4.3.4",
"datastore-core": "^9.2.3",
"esbuild-plugin-polyfill-node": "^0.3.0",
"ethers": "^6.7.1",
"events": "^3.3.0",
"helia": "^2.0.1",
"kubo-rpc-client": "^3.0.1",
"libp2p": "^0.46.9",
"multiformats": "^12.1.1",
"node-fetch": "^3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}