forked from tinylock-org/tinylock_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "tinylock_web",
"version": "1.0.5",
"description": "Tinylock Web Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"webpack": "webpack --config webpack.js",
"build": "npm run clean && tsc && npm run webpack",
"clean": "rm -rf dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/tinylock-org/tinylock_web"
},
"bugs": {
"url": "https://github.com/tinylock-org/tinylock_web/issues",
"email": "[email protected]"
},
"homepage": "https://www.tinylock.org",
"keywords": [
"tiynlock",
"algorand",
"locker",
"library"
],
"author": "tinylock-org",
"license": "ISC",
"devDependencies": {
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"algosdk": "^1.12.0",
"bin-protocol": "^3.1.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"rxjs": "^7.4.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"util": "^0.12.4"
},
"files": [
"dist"
]
}