-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.39 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.39 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
{
"name": "@imtbl/x-provider",
"description": "Provider package for Immutable SDK",
"version": "0.0.0",
"author": "Immutable",
"bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
"dependencies": {
"@imtbl/config": "workspace:*",
"@imtbl/generated-clients": "workspace:*",
"@imtbl/toolkit": "workspace:*",
"@imtbl/x-client": "workspace:*",
"@magic-ext/oidc": "12.0.5",
"@metamask/detect-provider": "^2.0.0",
"axios": "^1.12.0",
"enc-utils": "^3.0.0",
"ethers": "^6.13.4",
"magic-sdk": "^29.0.5",
"oidc-client-ts": "3.3.0"
},
"devDependencies": {
"@swc/core": "^1.3.36",
"@swc/jest": "^0.2.37",
"@types/axios": "^0.14.0",
"@types/jest": "^29.4.3",
"@types/node": "^18.14.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.40.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tsup": "8.3.0",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=20.11.0"
},
"exports": {
"development": {
"types": "./src/index.ts",
"browser": "./dist/browser/index.js",
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.js"
},
"default": {
"types": "./dist/types/index.d.ts",
"browser": "./dist/browser/index.js",
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.js"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/immutable/ts-immutable-sdk#readme",
"license": "Apache-2.0",
"main": "dist/node/index.cjs",
"module": "dist/node/index.js",
"browser": "dist/browser/index.js",
"publishConfig": {
"access": "public"
},
"repository": "immutable/ts-immutable-sdk.git",
"scripts": {
"build": "pnpm transpile && pnpm typegen",
"transpile": "tsup src/index.ts --config ../../tsup.config.js",
"typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types",
"pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
"lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --customConditions default --noEmit --jsx preserve"
},
"type": "module",
"types": "./dist/types/index.d.ts"
}