-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.72 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.72 KB
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
{
"name": "@thxnetwork/sdk",
"version": "1.0.1",
"description": "This SDK contains a client class that simplifies interactions with THX Network API's. Configure your digital assets in your dashboard and use the SDK to integrate distribution of those assets into your application.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build": "rimraf ./dist && npm run build:js && build:types",
"build:js": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@toruslabs/customauth": "^10.1.0",
"oidc-client-ts": "^2.0.5",
"typescript-declaration-webpack-plugin": "^0.2.2",
"web3": "^1.7.5"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.7.6",
"@types/webpack": "^5.28.0",
"@webpack-cli/generators": "^2.5.0",
"assert": "^2.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"deepmerge": "^4.2.2",
"https-browserify": "^1.0.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-loader": "^9.3.1",
"ts-polyfill": "^3.8.2",
"typescript": "^4.7.4",
"url": "^0.11.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"wepack-cli": "^0.0.1-security"
}
}