-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.06 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.06 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
{
"name": "@biochain/key-ui",
"private": true,
"version": "0.1.0",
"description": "Shared UI components for KeyApp and MiniApps",
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
},
"./address-display": {
"import": "./src/address-display/index.ts",
"types": "./src/address-display/index.ts"
},
"./amount-display": {
"import": "./src/amount-display/index.ts",
"types": "./src/amount-display/index.ts"
},
"./token-icon": {
"import": "./src/token-icon/index.ts",
"types": "./src/token-icon/index.ts"
},
"./styles": "./src/styles/base.css"
},
"files": [
"src"
],
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck:run": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run --project unit --passWithNoTests",
"test:storybook": "vitest run --project storybook --passWithNoTests",
"storybook": "storybook dev -p 6008",
"storybook:build": "storybook build",
"lint:run": "oxlint .",
"i18n:run": "echo 'No i18n'",
"theme:run": "echo 'No theme'"
},
"dependencies": {
"@biochain/key-utils": "workspace:*",
"@number-flow/react": "^0.5.5"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@storybook/addon-docs": "^10.0.0",
"@storybook/addon-vitest": "^10.0.0",
"@storybook/react-vite": "^10.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/browser-playwright": "^4.0.0",
"clsx": "^2.1.1",
"eslint-plugin-file-component-constraints": "workspace:*",
"jsdom": "^26.1.0",
"oxlint": "^1.32.0",
"storybook": "^10.0.0",
"tailwind-merge": "^3.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.0"
},
"keywords": [
"biochain",
"keyapp",
"ui",
"components"
],
"license": "MIT"
}