-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.28 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@primitivefi/rmm-sdk",
"version": "1.1.0-rc.3",
"description": "∇ A Software Development Kit for Primitive RMM-01.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "GPL-3.0-or-later",
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": "https://github.com/primitivefinance/rmm-sdk.git",
"keywords": [
"primitive",
"ethereum",
"sdk",
"rmm"
],
"module": "dist/rmm-sdk.esm.js",
"scripts": {
"build": "tsdx build --tsconfig tsconfig.json",
"start": "tsdx watch",
"test": "tsdx test",
"lint": "npx eslint",
"docs": "run-s docs:*",
"docs:prepare": "api-extractor run --local",
"docs:collect-sdk-apis": "node scripts/collect-sdk-api.js",
"docs:api-documenter": "api-documenter generate -i temp/sdk-api -o docs/sdk",
"prepare": "husky install"
},
"peerDependencies": {
"prettier": ">=2.0.0"
},
"dependencies": {
"@primitivefi/rmm-manager": "^1.1.0",
"@primitivefi/rmm-math": "^2.0.0-beta.3",
"@uniswap/sdk-core": "^3.0.1",
"shelljs": "0.8.5",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@microsoft/api-documenter": "^7.13.78",
"@microsoft/api-extractor": "^7.19.3",
"@types/jest": "^27.0.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"ethers": "^5.4.6",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"tsdx": "^0.7.2",
"web3-units": "^1.3.3"
},
"engines": {
"node": "*"
},
"release": {
"branches": [
"main",
{
"name": "rc",
"channel": "rc",
"prerelease": "rc"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"headerPattern": "^(\\w*)(?:\\((.*)\\))?!?: (.*)$"
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}