duoop-ui 1.0.0
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/LICENSE +204 -0
- package/README.md +201 -0
- package/THIRD_PARTY_NOTICES.md +142 -0
- package/lib/index.js +6614 -0
- package/lib/styles.css +3817 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "duoop-ui",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Tactile React components with plain CSS.",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite --host 127.0.0.1",
|
|
7
|
+
"build": "vite build",
|
|
8
|
+
"preview": "vite preview --host 127.0.0.1",
|
|
9
|
+
"test": "npm run build -- --logLevel warn && node tests/check-imports.mjs && npm run test:essentials && playwright test && node tests/build-downloads.mjs",
|
|
10
|
+
"test:navigation": "node tests/navigation.browser.mjs",
|
|
11
|
+
"test:essentials": "node tests/essentials.browser.mjs",
|
|
12
|
+
"test:essential-downloads": "node tests/essential-downloads.mjs",
|
|
13
|
+
"test:primitives": "node tests/run-primitives.mjs",
|
|
14
|
+
"test:integration": "node tests/fresh-project.mjs",
|
|
15
|
+
"test:pages": "node tests/standalone-pages.mjs",
|
|
16
|
+
"test:a11y": "node tests/audit-galleries.mjs",
|
|
17
|
+
"build:lib": "vite build --config vite.lib.config.js",
|
|
18
|
+
"prepack": "npm run build:lib",
|
|
19
|
+
"test:package": "node tests/package.mjs"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"react",
|
|
23
|
+
"components",
|
|
24
|
+
"ui",
|
|
25
|
+
"css"
|
|
26
|
+
],
|
|
27
|
+
"author": "",
|
|
28
|
+
"license": "Apache-2.0",
|
|
29
|
+
"type": "module",
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@radix-ui/react-dialog": "^1.1.23",
|
|
32
|
+
"@radix-ui/react-popover": "^1.1.23",
|
|
33
|
+
"@radix-ui/react-slider": "^1.4.7",
|
|
34
|
+
"@radix-ui/react-tooltip": "^1.2.16",
|
|
35
|
+
"gsap": "^3.15.0",
|
|
36
|
+
"leaflet": "^1.9.4",
|
|
37
|
+
"react-day-picker": "^9.14.0",
|
|
38
|
+
"react-dropzone": "^14.4.1"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@axe-core/playwright": "^4.13.0",
|
|
42
|
+
"@babel/parser": "^8.0.4",
|
|
43
|
+
"@playwright/test": "^1.63.0",
|
|
44
|
+
"prettier": "^3.9.6",
|
|
45
|
+
"vite": "^8.2.2",
|
|
46
|
+
"react": "^19.2.8",
|
|
47
|
+
"react-dom": "^19.2.8",
|
|
48
|
+
"@fontsource-variable/dm-sans": "^5.3.0",
|
|
49
|
+
"fflate": "^0.8.3",
|
|
50
|
+
"highlight.js": "^11.11.1"
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": "^22.18.0 || >=24.11.0"
|
|
54
|
+
},
|
|
55
|
+
"main": "./lib/index.js",
|
|
56
|
+
"module": "./lib/index.js",
|
|
57
|
+
"exports": {
|
|
58
|
+
".": "./lib/index.js",
|
|
59
|
+
"./styles.css": "./lib/styles.css",
|
|
60
|
+
"./package.json": "./package.json"
|
|
61
|
+
},
|
|
62
|
+
"files": [
|
|
63
|
+
"lib",
|
|
64
|
+
"LICENSE",
|
|
65
|
+
"THIRD_PARTY_NOTICES.md"
|
|
66
|
+
],
|
|
67
|
+
"sideEffects": [
|
|
68
|
+
"**/*.css"
|
|
69
|
+
],
|
|
70
|
+
"repository": {
|
|
71
|
+
"type": "git",
|
|
72
|
+
"url": "git+https://github.com/gus-rlin/Duoop-UI.git"
|
|
73
|
+
},
|
|
74
|
+
"homepage": "https://duoop-ui.pages.dev/",
|
|
75
|
+
"peerDependencies": {
|
|
76
|
+
"react": "^19.0.0",
|
|
77
|
+
"react-dom": "^19.0.0"
|
|
78
|
+
}
|
|
79
|
+
}
|