-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.16 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
{
"name": "loopso-bridge-sdk",
"description": "Loopso Bridge SDK",
"version": "1.0.32",
"source": "src/main.ts",
"main": "dist/index.js",
"module": "dist/index.esm.min.js",
"unpkg": "dist/index.iife.min.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/useloopso",
"repository": {
"type": "git",
"url": "https://github.com/useloopso/loopso-sdk-typescript"
},
"keywords": [
"loopso",
"lukso",
"bridge",
"swap"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup --clean && tsup --minify",
"watch": "tsup --watch",
"lint": "prettier src -c",
"format": "prettier src --write",
"prepack": "npm run build",
"release": "npm run prepack && npx np --no-tests"
},
"devDependencies": {
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"author": "https://github.com/johannafransn",
"dependencies": {
"cross-fetch": "^3.1.5",
"ethers": "^6",
"js-sha3": "^0.8.0"
}
}