-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.95 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
58
59
60
61
62
63
64
{
"name": "chain-syncer",
"version": "4.1.13",
"private": false,
"description": "chain-syncer is a JS module which allows you to synchronize your app with any ethereum-compatible blockchain/contract state. Fast. Flexible. Reliable.",
"author": "bytesbay",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib src/lib.ts && npm run bundle-dts && mv src/chain-syncer.d.ts dist/chain-syncer.d.ts",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"bundle-dts": "vue-cli-service bundle-dts --baseDir ./src --main ../src/lib.ts --removeSource --outputAsModuleFolder"
},
"main": "dist/chain-syncer.umd.min.js",
"types": "dist/chain-syncer.d.ts",
"engines": {
"node": ">=15.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-plugin-unit-jest": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "^2.0.0-0",
"@vue/vue3-jest": "^27.0.0-alpha.1",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"ethers": "^6.3.0",
"jest": "^27.0.5",
"node-polyfill-webpack-plugin": "^2.0.1",
"ts-jest": "^27.0.4",
"typescript": "~4.5.5",
"vue": "^3.2.13",
"vue-cli-plugin-ts-bundler": "0.0.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"bugs": {
"url": "https://github.com/bytesbay/chain-syncer/issues"
},
"homepage": "https://github.com/bytesbay/chain-syncer#readme",
"keywords": [
"chain-state",
"sync",
"ethersjs",
"ethereum",
"web3",
"blockchain"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bytesbay/chain-syncer.git"
}
}