-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "mdk-ui-common",
"version": "1.0.0",
"description": "Monax Development Kit - UI Common Components",
"type": "module",
"license": "Apache-2.0",
"keywords": [],
"repository": "[email protected]:monax/mdk-ui-common.git",
"author": "Monax Labs <[email protected]>",
"main": "dist/index.js",
"files": [
"LICENSE",
"package.json",
"dist"
],
"exports": {
"./hooks": "./dist/hooks/index.js",
"./utils": "./dist/utils/index.js"
},
"scripts": {
"build": "pnpm build:ts",
"build:ts": "tsc --build",
"format": "biome format . --write",
"lint": "biome check . && tsc --noEmit",
"prepack": "tsc -P ./tsconfig.prod.json"
},
"dependencies": {
"@sentry/browser": "^7.112.2",
"@sentry/react": "^7.112.2",
"debounce": "^2.0.0",
"lodash": "^4.17.21",
"mdk-schema": "github:monax/mdk-schema",
"react": "^18.3.1",
"react-router-dom": "^6.23.0",
"sonner": "^1.4.41",
"use-clipboard-copy": "^0.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@sentry/types": "^7.112.2",
"@types/lodash": "^4.17.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"typescript": "^5.4.5"
}
}