-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.74 KB
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
65
66
67
68
69
70
71
72
73
{
"name": "@charged-particles/charged-js-sdk",
"description": "Charged Particles - Javascript SDK",
"author": "Firma Lux, Inc.",
"version": "1.1.13",
"license": "ISC",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/charged-js-sdk.esm.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/charged-js-sdk.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/charged-js-sdk.esm.js",
"limit": "10 KB"
}
],
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --entry src/index.ts",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"pub:beta": "yarn publish --tag beta --access public",
"pub:latest": "yarn publish --tag latest --access public"
},
"peerDependencies": {},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@types/lodash": "^4.14.182",
"@uniswap/sdk-core": "^3.0.1",
"dotenv": "^16.0.1",
"ganache-cli": "^6.12.2",
"hardhat": "^2.10.1",
"husky": "^8.0.1",
"jest-environment-hardhat": "^1.1.8",
"process": "^0.11.10",
"rollup-plugin-analyzer": "^4.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"web3-providers-http": "^1.7.3"
},
"dependencies": {
"@charged-particles/protocol-subgraph": "https://github.com/Charged-Particles/charged-particles-subgraph.git",
"ethers": "^5.6.9",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"typescript": "^4.6.4"
},
"jest": {
"testTimeout": 50000
}
}