forked from clbrge/svelte-web3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.35 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
51
52
53
54
55
56
57
{
"name": "sapper-web3",
"version": "1.3.0",
"description": "web3.js as a Svelte store",
"module": "dist/index.mjs",
"svelte": "dist/index.mjs",
"main": "dist/index.js",
"license": "MIT",
"repository": "lukem121/sapper-web3",
"author": {
"name": "Christophe Le Bars",
"email": "<[email protected]>"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"example": "npm run build && rollup -c example/rollup.config.js",
"dev-example": "rollup -w -c example/rollup.config.js",
"start-example": "sirv public"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"bn.js": "^5.1.3",
"eslint-plugin-svelte3": "^2.7.3",
"release-it": "^14.2.1",
"rollup": "^2.33.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-svelte": "^6.1.0",
"sirv-cli": "^1.0.8",
"svelte": "^3.29.4",
"web3": "1.3.0"
},
"release-it": {
"github": {
"release": true
}
},
"publishConfig": {
"access": "public"
},
"keywords": [
"sapper",
"ethereum",
"web3",
"store"
],
"files": [
"src",
"dist"
]
}