@mjpvs/agentic-component-library-test 1.3.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/README.md +92 -0
- package/dist/components/Box/Box.d.ts +7 -0
- package/dist/components/Box/Box.stories.d.ts +7 -0
- package/dist/components/Box/index.d.ts +2 -0
- package/dist/components/Button/Button.d.ts +9 -0
- package/dist/components/Button/Button.stories.d.ts +13 -0
- package/dist/components/Button/index.d.ts +2 -0
- package/dist/components/Card/Card.d.ts +7 -0
- package/dist/components/Card/Card.stories.d.ts +12 -0
- package/dist/components/Card/index.d.ts +2 -0
- package/dist/components/Container/Container.d.ts +6 -0
- package/dist/components/Container/Container.stories.d.ts +7 -0
- package/dist/components/Container/index.d.ts +2 -0
- package/dist/components/Flex/Flex.d.ts +11 -0
- package/dist/components/Flex/Flex.stories.d.ts +9 -0
- package/dist/components/Flex/index.d.ts +2 -0
- package/dist/components/Grid/Grid.d.ts +14 -0
- package/dist/components/Grid/Grid.stories.d.ts +9 -0
- package/dist/components/Grid/index.d.ts +2 -0
- package/dist/components/Heading/Heading.d.ts +6 -0
- package/dist/components/Heading/Heading.stories.d.ts +9 -0
- package/dist/components/Heading/index.d.ts +2 -0
- package/dist/components/Video/Video.d.ts +12 -0
- package/dist/components/Video/Video.stories.d.ts +9 -0
- package/dist/components/Video/index.d.ts +2 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +963 -0
- package/package.json +91 -0
package/package.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mjpvs/agentic-component-library-test",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./style.css": "./dist/style.css"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "vite",
|
|
23
|
+
"build:tokens": "node tokens/build.js",
|
|
24
|
+
"build": "npm run build:tokens && vite build",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"preview": "vite preview",
|
|
27
|
+
"test": "vitest",
|
|
28
|
+
"test:ui": "vitest --ui",
|
|
29
|
+
"test:run": "vitest run",
|
|
30
|
+
"test:coverage": "vitest run --coverage",
|
|
31
|
+
"storybook": "storybook dev -p 6006",
|
|
32
|
+
"build-storybook": "storybook build",
|
|
33
|
+
"release": "semantic-release",
|
|
34
|
+
"commit": "cz"
|
|
35
|
+
},
|
|
36
|
+
"config": {
|
|
37
|
+
"commitizen": {
|
|
38
|
+
"path": "cz-conventional-changelog"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"react": "^18.0.0",
|
|
43
|
+
"react-dom": "^18.0.0"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"react": "^18.0.0",
|
|
47
|
+
"react-dom": "^18.0.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@eslint/js": "^9.17.0",
|
|
51
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
52
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
53
|
+
"@semantic-release/exec": "^7.1.0",
|
|
54
|
+
"@semantic-release/git": "^10.0.1",
|
|
55
|
+
"@semantic-release/github": "^12.0.6",
|
|
56
|
+
"@semantic-release/npm": "^13.1.5",
|
|
57
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
58
|
+
"@storybook/addon-a11y": "^8.5.0",
|
|
59
|
+
"@storybook/addon-essentials": "^8.5.0",
|
|
60
|
+
"@storybook/addon-interactions": "^8.5.0",
|
|
61
|
+
"@storybook/addon-links": "^8.5.0",
|
|
62
|
+
"@storybook/blocks": "^8.5.0",
|
|
63
|
+
"@storybook/react": "^8.5.0",
|
|
64
|
+
"@storybook/react-vite": "^8.5.0",
|
|
65
|
+
"@storybook/test": "^8.5.0",
|
|
66
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
67
|
+
"@testing-library/react": "^16.3.2",
|
|
68
|
+
"@testing-library/user-event": "^14.6.1",
|
|
69
|
+
"@types/react": "^18.3.18",
|
|
70
|
+
"@types/react-dom": "^18.3.5",
|
|
71
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
72
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
73
|
+
"commitizen": "^4.3.1",
|
|
74
|
+
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
75
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
76
|
+
"eslint": "^9.17.0",
|
|
77
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
78
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
79
|
+
"globals": "^15.14.0",
|
|
80
|
+
"jsdom": "^29.0.0",
|
|
81
|
+
"semantic-release": "^25.0.3",
|
|
82
|
+
"storybook": "^8.5.0",
|
|
83
|
+
"style-dictionary": "^5.3.3",
|
|
84
|
+
"typescript": "~5.6.2",
|
|
85
|
+
"typescript-eslint": "^8.18.2",
|
|
86
|
+
"vite": "^6.0.5",
|
|
87
|
+
"vite-plugin-css-injected-by-js": "^4.0.1",
|
|
88
|
+
"vite-plugin-dts": "^4.5.4",
|
|
89
|
+
"vitest": "^4.1.0"
|
|
90
|
+
}
|
|
91
|
+
}
|