-
Notifications
You must be signed in to change notification settings - Fork 361
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) 路 1.95 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) 路 1.95 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
{
"name": "@vibe/dialog",
"version": "4.1.1",
"description": "Vibe sub-package for dialog components",
"repository": {
"type": "git",
"url": "git+https://github.com/mondaycom/vibe.git",
"directory": "packages/components/dialog"
},
"bugs": {
"url": "https://github.com/mondaycom/vibe/issues"
},
"homepage": "https://github.com/mondaycom/vibe#readme",
"author": "monday.com",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./mockedClassNames": {
"import": "./dist/mocked_classnames/index.js",
"default": "./dist/mocked_classnames/index.js"
}
},
"scripts": {
"build": "rollup -c && yarn build:mocked-classnames",
"build:mocked-classnames": "[ \"$SKIP_RELEASE_ARTIFACTS\" = \"true\" ] || mock_classnames=on rollup -c",
"test": "vitest run",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@floating-ui/react-dom": "^2.1.2",
"@vibe/hooks": "4.0.3",
"@vibe/layer": "4.0.4",
"@vibe/shared": "4.0.3",
"@vibe/style": "4.0.0",
"classnames": "^2.5.1",
"es-toolkit": "^1.39.10",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/react-transition-group": "^4.4.5",
"@vibe/config": "4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"typescript": "^5.9.3",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"sideEffects": [
"*.scss",
"*.css",
"*.scss.js",
"*.css.js"
],
"eslintConfig": {
"extends": [
"../../../node_modules/@vibe/config/.eslintrc.cjs"
]
}
}