-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
79 lines (79 loc) · 2.11 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@influenceth/sdk",
"version": "2.3.3",
"description": "Influence SDK",
"type": "module",
"module": "./build/index.js",
"exports": {
"import": "./build/index.js",
"require": "./build/index.cjs"
},
"files": [
"build/*"
],
"scripts": {
"build": "rollup --config ./rollup.config.js",
"export-production-chains": "node ./src/scripts/exportProductionChains.js",
"lint": "eslint ./src",
"prepublishOnly": "npm run build",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --recursive",
"publish-sdk": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Influenceth/sdk.git"
},
"author": "Unstoppable Games, Inc.",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Influenceth/sdk/issues"
},
"homepage": "https://github.com/Influenceth/sdk#readme",
"browserslist": {
"production": [
"chrome 52",
"opera 39",
"edge 14",
"firefox 52",
"safari 10.1",
"node 7",
"ios 10.3",
"samsung 6.2",
"electron 1.3"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-babel": "^6.0.2",
"acorn-import-assertions": "^1.8.0",
"almost-equal": "^1.1.0",
"axios": "^1.3.3",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-import-assert": "^2.1.2",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@influenceth/astro": "^0.2.6",
"buffer": "^6.0.3",
"ethers": "^6.7.1",
"mathjs": "^11.4.0",
"starknet": "^5.14.1"
}
}