-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.28 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
{
"name": "@buildwithsygma/sygmaprotocol-widget",
"description": "Sygma Protocol Widget",
"version": "0.2.1",
"main": "build/sygmaprotocol-widget.js",
"module": "build/sygmaprotocol-widget.js",
"types": "build/index.d.ts",
"license": "LGPL-3.0-or-later",
"type": "module",
"files": [
"build",
"src"
],
"scripts": {
"start": "yarn run dev",
"dev": "VITE_BRIDGE_ENV=testnet vite",
"build": "yarn run lint:types && yarn run clean && vite build --mode development",
"build:production": "yarn run lint:types && yarn run clean && vite build",
"build:preview": "yarn run clean && vite build --config vite.preview.config.ts",
"serve": "vite preview --config vite.preview.config.ts",
"clean": "rm -rf ./build",
"lint": "yarn run lint:types && yarn run lint:code && yarn run lint:lit",
"lint:types": "tsc -p ./tsconfig.json --noEmit",
"lint:code": "eslint '{src,tests}/**/*.ts'",
"lint:lit": "lit-analyzer",
"test": "yarn run test:unit",
"test:unit": "vitest --run --config ./vite.config.ts"
},
"author": "Sygmaprotocol Product Team",
"dependencies": {
"@buildwithsygma/sygma-contracts": "^2.5.1",
"@buildwithsygma/sygma-sdk-core": "^2.10.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/transactions": "^5.7.0",
"@lit/context": "^1.1.0",
"@lit/reactive-element": "^2.0.3",
"@polkadot-onboard/core": "^1.1.0",
"@polkadot-onboard/injected-wallets": "^1.1.0",
"@polkadot/api": "^10.11.2",
"@polkadot/extension-dapp": "^0.46.6",
"@polkadot/keyring": "^12.6.2",
"@polkadot/util": "^12.6.2",
"@web3-onboard/core": "^2.21.2",
"@web3-onboard/injected-wallets": "^2.10.11",
"@web3-onboard/walletconnect": "^2.5.3",
"ethers": "5.7.2",
"events": "^3.3.0",
"lit": "3.0.0"
},
"devDependencies": {
"@open-wc/semantic-dom-diff": "^0.20.1",
"@open-wc/testing-helpers": "^3.0.0",
"eslint": "^8.48.0",
"eslint-plugin-lit": "^1.9.1",
"happy-dom": "^13.3.1",
"lit-analyzer": "^2.0.3",
"rollup-plugin-visualizer": "^5.9.2",
"typescript": "5.2.2",
"vite": "4.4.11",
"vite-plugin-clean": "^1.0.0",
"vite-plugin-dts": "^3.7.1",
"vitest": "^1.2.1"
}
}