-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.67 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
{
"name": "@swivel-finance/connect",
"version": "0.0.2",
"description": "A flexible web3 connection service for swivel frontends and node scripting environments.",
"type": "module",
"main": "index.js",
"module": "index.js",
"author": "Alexander Wende",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Swivel-Finance/connect.git"
},
"bugs": {
"url": "https://github.com/Swivel-Finance/connect/issues"
},
"homepage": "https://github.com/Swivel-Finance/connect#readme",
"scripts": {
"clean": "shx rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"lint": "eslint src/ example/",
"lint:fix": "npm run lint -- --fix",
"prerelease": "npm-run-all clean lint build",
"release": "commit-and-tag-version",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"release:dry": "npm run release -- --dry-run",
"release:publish": "git push --follow-tags origin main && npm run pub",
"pub": "npm publish ./dist/src --access public",
"prepub": "shx cp ./package.json ./README.md ./LICENSE ./dist/src",
"postpub": "shx rm ./dist/src/package.json ./dist/src/README.md ./dist/src/LICENSE",
"pack": "npm run prepub && npm pack ./dist/src && npm run postpub"
},
"devDependencies": {
"@swivel-finance/eslint-config": "^0.2.1",
"commit-and-tag-version": "^12.0.0",
"eslint": "^8.54.0",
"ethers": "^5.7.2",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
},
"peerDependencies": {
"ethers": "^5.7.2"
}
}