-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.4 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
{
"name": "@multiversx/sdk-dapp-core-ui",
"version": "0.0.0-alpha.2",
"description": "A library to hold UI components for a dApp on the MultiversX blockchain",
"author": "MultiversX",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/components/sdk-dapp-core-ui.esm.js",
"exports": {
".": {
"import": "./dist/components/sdk-dapp-core-ui.esm.js",
"require": "./dist/components/sdk-dapp-core-ui.cjs.js"
},
"./my-component": {
"import": "./dist/components/my-component.js",
"types": "./dist/components/my-component.d.ts"
},
"./ledger-connect-modal": {
"import": "./dist/components/ledger-connect-modal.js",
"types": "./dist/components/ledger-connect-modal.d.ts"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
},
"./format-amount": {
"import": "./dist/components/format-amount.js",
"types": "./dist/components/format-amount.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/multiversx/mx-sdk-dapp-core-ui.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"unpublish-verdaccio": "npm unpublish @multiversx/sdk-dapp-core-ui --force --registry http://localhost:4873",
"publish-verdaccio": "npm run unpublish-verdaccio && npm run build && npm publish --registry http://localhost:4873/",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": ">= 6.7.2",
"@fortawesome/free-solid-svg-icons": ">= 6.7.2",
"@multiversx/sdk-dapp-utils": ">= 1.0.4",
"classnames": ">= 2.5.1",
"qrcode": ">= 1.5.4"
},
"devDependencies": {
"@stencil/core": "^4.22.3",
"@stencil/sass": "^3.0.12",
"@stencil/store": "2.0.16",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.1",
"@types/node": "^22.10.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jsdom": "^22.1.0",
"prettier": "3.2.5",
"puppeteer": "^23.9.0",
"rollup-plugin-node-polyfills": "^0.2.1"
}
}