@qontinui/navigation 0.1.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/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@qontinui/navigation",
3
+ "version": "0.1.1",
4
+ "description": "Shared navigation structure for Qontinui applications",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup src/index.ts --format cjs,esm --dts && test -s dist/index.d.ts",
14
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
15
+ "typecheck": "tsc --noEmit",
16
+ "lint": "eslint src/",
17
+ "clean": "rm -rf dist"
18
+ },
19
+ "peerDependencies": {
20
+ "@qontinui/ui-bridge": ">=0.3.0",
21
+ "react": "^18.0.0 || ^19.0.0"
22
+ },
23
+ "peerDependenciesMeta": {
24
+ "@qontinui/ui-bridge": {
25
+ "optional": true
26
+ },
27
+ "react": {
28
+ "optional": true
29
+ }
30
+ },
31
+ "keywords": [
32
+ "qontinui",
33
+ "navigation",
34
+ "menu",
35
+ "sidebar"
36
+ ],
37
+ "author": "Joshua Spinak",
38
+ "license": "AGPL-3.0-or-later",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/qontinui/qontinui-navigation.git"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "overrides": {
47
+ "rollup": ">=4.59.0"
48
+ },
49
+ "devDependencies": {
50
+ "@eslint/js": "^9.0.0",
51
+ "@qontinui/ui-bridge": "^0.3.2",
52
+ "@types/node": "^20.10.0",
53
+ "@types/react": "^19.0.0",
54
+ "eslint": "^9.0.0",
55
+ "react": "^19.0.0",
56
+ "tsup": "^8.0.1",
57
+ "typescript": "^6.0.2",
58
+ "typescript-eslint": "^8.53.1"
59
+ }
60
+ }