forked from samatechtw/onflow-fcl-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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": "@samatech/onflow-fcl-esm",
"description": "@onflow/fcl built for ES Module consumption",
"module": "dist/fcl.esm.js",
"main": "dist/fcl.cjs.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc && rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samatechtw/onflow-fcl-esm.git"
},
"keywords": [
"onflow",
"fcl",
"cadence",
"esm"
],
"author": "Sam Pullman",
"license": "MIT",
"bugs": {
"url": "https://github.com/samatechtw/onflow-fcl-esm/issues"
},
"homepage": "https://github.com/samatechtw/onflow-fcl-esm#readme",
"dependencies": {
"@onflow/fcl": "0.0.78",
"buffer": "^6.0.3",
"http-browserify": "^1.7.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@onflow/config": "^0.0.2",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.67.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "^4.5.4"
},
"version": "0.6.0"
}