-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "fibrous-router-sdk",
"version": "0.4.1",
"description": "A Javascript SDK for Fibrous Finance",
"main": "dist/index.js",
"module": "dist/index.m.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"execute": "npx ts-node",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\"",
"build": "rimraf dist && microbundle --tsconfig tsconfig.json"
},
"keywords": [],
"author": "kermo kermo@fibrous.com",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"babel-jest": "^29.6.1",
"eslint": "^8.50.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.1",
"microbundle": "^0.15.1",
"prettier": "3.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"ethers": "^6.7.1",
"fibrous-router-sdk": "^0.4.1",
"starknet": "^6.13.1"
},
"publishConfig": {
"access": "public"
}
}