-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.05 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
{
"name": "@tinymanorg/tinyman-swap-widget-sdk",
"version": "1.0.8",
"description": "Easily integrate Tinyman Swap Widget into your dApp with JavaScript SDK.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint --ext .jsx,.js,.tsx,.ts src/",
"eslint:fix": "eslint --fix --ext .jsx,.js,.tsx,.ts src/",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinymanorg/tinyman-swap-widget-sdk.git"
},
"devDependencies": {
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.0.0",
"rollup": "^2.79.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"@hipo/eslint-config-base": "4.3.0",
"@hipo/eslint-config-typescript": "1.2.0",
"@types/node": "^20.1.4",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"esbuild": "^0.17.19",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"install": "^0.13.0",
"lint-staged": "^13.1.2",
"npm": "^9.6.6",
"prettier": "2.6.1",
"typescript": "4.6.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --config ./.prettierrc.cjs --write"
],
"src/**/*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tinymanorg/tinyman-swap-widget-sdk/issues"
},
"homepage": "https://github.com/tinymanorg/tinyman-swap-widget-sdk#readme",
"dependencies": {
"@tinymanorg/tinyman-js-sdk": "^3.0.0",
"algosdk": "^2.3.0"
}
}