-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.56 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
{
"name": "@iota/apps-ui-kit",
"version": "0.11.0",
"sideEffects": false,
"repository": "https://github.com/iotaledger/ts-packages",
"license": "Apache-2.0",
"files": [
"CHANGELOG.md",
"LICENSE",
"src",
"dist"
],
"scripts": {
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-package": "tsc --project tsconfig.package.json && vite build",
"build": "cross-env BUILD_ENV=package pnpm run build-package",
"dev": "pnpm run storybook"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./styles": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@fontsource-variable/roboto-flex": "^5.2.6",
"@fontsource/inter": "^5.0.17",
"@iota/apps-ui-icons": "workspace:*",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-visually-hidden": "^1.1.0",
"classnames": "^2.5.1",
"lodash.merge": "^4.6.2",
"react-number-format": "^5.2.2"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@storybook/addon-a11y": "^10.3.6",
"@storybook/addon-docs": "^10.3.6",
"@storybook/addon-themes": "^10.3.6",
"@storybook/react": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^24.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^4.3.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"memfs": "^4.11.1",
"postcss": "^8.4.31",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^10.3.6",
"tailwindcss": "^3.3.3",
"typescript": "^5.5.3",
"vite": "^8.0.1",
"vite-plugin-dts": "^4.5.4"
}
}