@stackshift-ui/navigation 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 +373 -0
- package/README.md +22 -0
- package/dist/chunk-3DFREOSA.mjs +1 -0
- package/dist/chunk-52BNTFA3.mjs +1 -0
- package/dist/chunk-6Y7ZEVQW.mjs +1 -0
- package/dist/chunk-IMQB7ODR.mjs +1 -0
- package/dist/chunk-INJUL3VL.mjs +1 -0
- package/dist/chunk-KQFO7OZP.mjs +1 -0
- package/dist/chunk-YFDMEEFC.mjs +1 -0
- package/dist/helper/blockStyle.d.ts +2 -0
- package/dist/helper/blockStyle.js +1 -0
- package/dist/helper/blockStyle.mjs +1 -0
- package/dist/helper/index.d.ts +2 -0
- package/dist/helper/index.js +1 -0
- package/dist/helper/index.mjs +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/dist/navigation.d.ts +17 -0
- package/dist/navigation.js +1 -0
- package/dist/navigation.mjs +1 -0
- package/dist/navigation_a.d.ts +3 -0
- package/dist/navigation_a.js +1 -0
- package/dist/navigation_a.mjs +1 -0
- package/dist/navigation_b.d.ts +3 -0
- package/dist/navigation_b.js +1 -0
- package/dist/navigation_b.mjs +1 -0
- package/dist/navigation_c.d.ts +3 -0
- package/dist/navigation_c.js +1 -0
- package/dist/navigation_c.mjs +1 -0
- package/dist/navigation_d.d.ts +3 -0
- package/dist/navigation_d.js +1 -0
- package/dist/navigation_d.mjs +1 -0
- package/dist/navigation_e.d.ts +3 -0
- package/dist/navigation_e.js +1 -0
- package/dist/navigation_e.mjs +1 -0
- package/dist/types.d.ts +371 -0
- package/dist/types.js +1 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stackshift-ui/navigation",
|
|
3
|
+
"description": "",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"private": false,
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"module": "./dist/index.mjs",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/**"
|
|
12
|
+
],
|
|
13
|
+
"author": "WebriQ <info@webriq.com>",
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@testing-library/react": "^16.0.1",
|
|
16
|
+
"@types/node": "^22.7.0",
|
|
17
|
+
"@types/react": "^18.3.9",
|
|
18
|
+
"@types/react-dom": "^18.3.0",
|
|
19
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
20
|
+
"@vitest/coverage-v8": "^2.1.1",
|
|
21
|
+
"esbuild-plugin-rdi": "^0.0.0",
|
|
22
|
+
"esbuild-plugin-react18": "^0.2.5",
|
|
23
|
+
"esbuild-plugin-react18-css": "^0.0.4",
|
|
24
|
+
"jsdom": "^25.0.1",
|
|
25
|
+
"react": "^18.3.1",
|
|
26
|
+
"react-dom": "^18.3.1",
|
|
27
|
+
"tsup": "^8.3.0",
|
|
28
|
+
"typescript": "^5.6.2",
|
|
29
|
+
"vite-tsconfig-paths": "^5.0.1",
|
|
30
|
+
"vitest": "^2.1.1",
|
|
31
|
+
"@stackshift-ui/eslint-config": "1.0.0",
|
|
32
|
+
"@stackshift-ui/typescript-config": "2.0.0"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@portabletext/react": "^3.1.0",
|
|
36
|
+
"@stackshift-ui/button": "1.0.0",
|
|
37
|
+
"@stackshift-ui/system": "2.0.0",
|
|
38
|
+
"@stackshift-ui/link": "1.0.0",
|
|
39
|
+
"@stackshift-ui/image": "1.0.0",
|
|
40
|
+
"@stackshift-ui/text": "1.0.0",
|
|
41
|
+
"@stackshift-ui/flex": "1.0.0",
|
|
42
|
+
"@stackshift-ui/scripts": "1.0.0",
|
|
43
|
+
"@stackshift-ui/section": "1.0.0",
|
|
44
|
+
"@stackshift-ui/container": "1.0.0"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"@stackshift-ui/system": ">=0.0.0",
|
|
48
|
+
"@types/react": "16.8 - 19",
|
|
49
|
+
"next": "10 - 14",
|
|
50
|
+
"react": "16.8 - 19",
|
|
51
|
+
"react-dom": "16.8 - 19"
|
|
52
|
+
},
|
|
53
|
+
"peerDependenciesMeta": {
|
|
54
|
+
"next": {
|
|
55
|
+
"optional": true
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "tsup && tsc -p tsconfig-build.json",
|
|
60
|
+
"clean": "rm -rf dist",
|
|
61
|
+
"dev": "tsup --watch && tsc -p tsconfig-build.json -w",
|
|
62
|
+
"typecheck": "tsc --noEmit",
|
|
63
|
+
"lint": "eslint src/",
|
|
64
|
+
"test": "vitest run --coverage"
|
|
65
|
+
}
|
|
66
|
+
}
|