-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"name": "@interlinklabs/mdk",
"version": "1.3.14",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"buildr": "rollup -c --bundleConfigAsCjs",
"start": "rollup -c -w --bundleConfigAsCjs",
"buildw": "webpack"
},
"keywords": [
"mdk",
"jwt",
"authentication",
"react",
"sdk"
],
"author": "Interlink Labs",
"license": "MIT",
"description": "An SDK for integrating authentication by Interlink Labs",
"dependencies": {
"jwt-decode": "^4.0.0",
"mini-app-sdk-test": "file:",
"react": "^18.2.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"babel-loader": "^9.2.1",
"html-webpack-plugin": "^5.6.3",
"rollup": "^4.30.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}