-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.72 KB
/
package.json
File metadata and controls
72 lines (72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@venly/connect",
"version": "2.11.0-SNAPSHOT.0",
"description": "Venly Connect SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "umd/index.js",
"scripts": {
"clean": "rm -rf dist",
"build-ts": "tsc -p .",
"build-js": "npx webpack --mode production",
"build": "npm run clean && npm run build-ts && npm run build-js",
"build-and-pack": "npm run clean && npm run build-ts && npm run build-js && npm pack",
"typedoc": "typedoc --out './docs' './src' --excludeExternals --target 'ES5' --theme 'minimal' --hideGenerator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Venly/connect-sdk"
},
"keywords": [
"venly-connect",
"venly-widget",
"venly",
"venly.io",
"venly.market",
"blockchain",
"nft",
"crypto",
"collectible",
"sdk",
"non-fungible-tokens",
"smart-contracts",
"erc-20",
"erc-721",
"erc-1155",
"arkane"
],
"author": "@venly <info@venly.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Venly/connect-sdk/issues"
},
"homepage": "https://venly.io",
"dependencies": {
"@types/node": "^12.7.1",
"es6-promise": "^4.2.8",
"keycloak-js": "11.0.2"
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"ts-loader": "^6.0.4",
"typedoc": "^0.20.36",
"typescript": "^3.9.10",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12"
},
"overrides": {
"marked": "^4.3.0",
"braces": "^3.0.3",
"micromatch": "^4.0.8",
"semver": "^7.6.3",
"cross-spawn": "^7.0.6",
"es5-ext": "^0.10.64",
"loader-utils": "^2.0.4",
"brace-expansion": "^2.0.1"
},
"files": [
"dist",
"umd",
"logo.png"
]
}