base-vaul 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +77 -0
- package/dist/index.d.mts +147 -0
- package/dist/index.d.ts +147 -0
- package/dist/index.js +1668 -0
- package/dist/index.mjs +1641 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "base-vaul",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Drawer component for React made with Base-UI.",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"style.css"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
"import": {
|
|
14
|
+
"types": "./dist/index.d.mts",
|
|
15
|
+
"default": "./dist/index.mjs"
|
|
16
|
+
},
|
|
17
|
+
"require": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"default": "./dist/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"type-check": "tsc --noEmit",
|
|
24
|
+
"build": "pnpm type-check && bunchee && pnpm copy-assets",
|
|
25
|
+
"copy-assets": "cp -r ./src/style.css ./style.css",
|
|
26
|
+
"dev": "bunchee --watch",
|
|
27
|
+
"dev:test": "turbo run dev --filter=test...",
|
|
28
|
+
"format": "prettier --write .",
|
|
29
|
+
"test": "playwright test --ui",
|
|
30
|
+
"test:e2e": "playwright test"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"react",
|
|
34
|
+
"drawer",
|
|
35
|
+
"dialog",
|
|
36
|
+
"modal"
|
|
37
|
+
],
|
|
38
|
+
"author": "Noé Tatoud <noe@bearstudio.fr>",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/ntatoud/base-vaul.git"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/ntatoud/base-vaul/issues"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@playwright/test": "1.57.0",
|
|
49
|
+
"@types/node": "20.5.7",
|
|
50
|
+
"@types/react": "18.2.55",
|
|
51
|
+
"@types/react-dom": "18.2.18",
|
|
52
|
+
"bunchee": "^5.1.5",
|
|
53
|
+
"eslint": "^7.32.0",
|
|
54
|
+
"prettier": "^2.5.1",
|
|
55
|
+
"react": "^18.2.0",
|
|
56
|
+
"react-dom": "^18.2.0",
|
|
57
|
+
"turbo": "1.6",
|
|
58
|
+
"typescript": "5.2.2"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc",
|
|
62
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc"
|
|
63
|
+
},
|
|
64
|
+
"packageManager": "pnpm@10.25.0",
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@base-ui/react": "1.0.0"
|
|
67
|
+
}
|
|
68
|
+
}
|