-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.82 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.82 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@imtbl/checkout-widgets",
"version": "0.0.0",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@0xsquid/sdk": "^2.8.25",
"@biom3/design-tokens": "^0.4.5",
"@biom3/react": "^0.29.4",
"@emotion/react": "^11.11.3",
"@imtbl/bridge-sdk": "workspace:*",
"@imtbl/checkout-sdk": "workspace:*",
"@imtbl/config": "workspace:*",
"@imtbl/cryptofiat": "workspace:*",
"@imtbl/dex-sdk": "workspace:*",
"@imtbl/passport": "workspace:*",
"@imtbl/react-analytics": "0.3.4-alpha",
"@rive-app/react-canvas-lite": "^4.9.0",
"@walletconnect/ethereum-provider": "^2.11.1",
"@walletconnect/modal": "^2.6.2",
"axios": "^1.12.0",
"ethers": "^6.13.4",
"framer-motion": "^11.0.6",
"i18next": "^23.7.6",
"i18next-browser-languagedetector": "^7.2.0",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"pako": "^2.1.0",
"pino-pretty": "^11.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"ts-deepmerge": "^7.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@0xsquid/squid-types": "^0.1.108",
"@jest/globals": "^29.5.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@segment/analytics-next": "^1.53.2",
"@svgr/webpack": "^8.0.1",
"@swc/core": "^1.3.36",
"@swc/jest": "^0.2.37",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.4.3",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^18.14.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^8.3.4",
"eslint": "^8.40.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"react-scripts": "5.0.1",
"rimraf": "^6.0.1",
"rollup": "^4.22.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"ts-jest": "^29.1.0",
"typescript": "^5.6.2",
"unplugin-swc": "^1.5.1",
"web-vitals": "^2.1.4"
},
"exports": {
"development": {
"types": "./src/index.ts",
"default": "./dist/browser/index.js"
},
"default": {
"types": "./dist/types/index.d.ts",
"default": "./dist/browser/index.js"
}
},
"homepage": "https://github.com/immutable/ts-immutable-sdk",
"keywords": [
"immutable"
],
"license": "ISC",
"main": "./dist/browser/index.js",
"module": "./dist/browser/index.js",
"publishConfig": {
"access": "public"
},
"repository": "immutable/ts-immutable-sdk.git",
"scripts": {
"build": "NODE_ENV=production node --max-old-space-size=14366 ./node_modules/rollup/dist/bin/rollup --config rollup.config.js && pnpm typegen",
"transpile": "node --max-old-space-size=14366 ./node_modules/rollup/dist/bin/rollup --config rollup.config.js",
"typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types",
"pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
"build:local": "pnpm build && mkdir -p ../widgets-sample-app/public/lib/js && cp dist/browser/*.js ../widgets-sample-app/public/lib/js/",
"lint": "eslint ./src --ext .ts,.jsx,.tsx",
"lint:fix": "eslint ./src --ext .ts,.jsx,.tsx --fix",
"start": "NODE_ENV=development rollup --config rollup.config.js --watch",
"test": "jest test --passWithNoTests",
"test:watch": "jest test --passWithNoTests --watch",
"typecheck": "tsc --customConditions default --customConditions \"default\" --noEmit"
},
"type": "module",
"types": "./dist/types/index.d.ts"
}