-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "svelte-contracts",
"version": "1.1.24",
"type": "module",
"description": "Svelte stores library to access contracts addresses on any Ethereum forked chain.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "dist/index.d.ts"
}
},
"scripts": {
"build": "tsc && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PythoniCode/svelte-contracts.git"
},
"keywords": [
"svelte",
"web3",
"ethereum",
"blockchain",
"svelte-kit"
],
"author": "Anthony Riley",
"license": "ISC",
"bugs": {
"url": "https://github.com/PythoniCode/svelte-contracts/issues"
},
"homepage": "https://github.com/PythoniCode/svelte-contracts#readme",
"dependencies": {
"svelte": "^3.44.3",
"svelte-web3": "^3.0.2"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"rollup": "^2.63.0",
"typescript": "^4.5.4"
}
}