-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.14 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
{
"name": "@tinymanorg/tinyman-js-sdk",
"version": "4.0.9",
"description": "Tinyman JS SDK",
"author": "Tinyman Core Team",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"dist": "dist"
},
"scripts": {
"prepare": "husky install",
"prettify": "prettier --config ./.prettierrc.js --write \"src/**/*\"",
"eslint": "eslint --ext .jsx,.js,.tsx,.ts src/",
"type-check": "tsc --noEmit",
"dev": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinymanorg/tinyman-js-sdk.git"
},
"bugs": {
"url": "https://github.com/tinymanorg/tinyman-js-sdk/issues"
},
"homepage": "https://github.com/tinymanorg/tinyman-js-sdk#readme",
"keywords": [
"tinyman",
"algorand",
"typescript",
"javascript"
],
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@hipo/eslint-config-base": "^4.3.0",
"@hipo/eslint-config-typescript": "^1.2.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "0.4.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"js-sha512": "^0.8.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.6",
"rollup": "^3.20.0",
"rollup-plugin-eslint": "^7.0.0",
"typescript": "^5.0.2",
"@types/uuid": "^10.0.0"
},
"dependencies": {
"algosdk": "^2.8.0",
"base64-js": "^1.5.1",
"multiformats": "^13.2.1",
"uuid": "^10.0.0"
},
"lint-staged": {
"src/**/*.{ts,md}": "prettier --write",
"src/**/*.ts": "eslint"
}
}