@paul-portfolio/react 0.1.12

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.
File without changes
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // @paul/react - React component wrappers for the Paul Design System
3
+ // Components will be exported from here as they are built.
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@paul-portfolio/react",
3
+ "version": "0.1.12",
4
+ "description": "React components for the Paul Design System",
5
+ "license": "MIT",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist/"
17
+ ],
18
+ "peerDependencies": {
19
+ "@paul-portfolio/css": ">=0.1.0",
20
+ "@paul-portfolio/tokens": ">=0.1.0",
21
+ "react": ">=18.0.0",
22
+ "react-dom": ">=18.0.0"
23
+ },
24
+ "scripts": {
25
+ "build": "npx tsc",
26
+ "clean": "rm -rf dist",
27
+ "test": "vitest run"
28
+ },
29
+ "devDependencies": {
30
+ "@axe-core/react": "^4.12.1",
31
+ "@testing-library/dom": "^10.4.1",
32
+ "@testing-library/jest-dom": "^6.9.1",
33
+ "@testing-library/react": "^16.3.2",
34
+ "@testing-library/user-event": "^14.6.1",
35
+ "@types/react": "^19.2.17",
36
+ "@types/react-dom": "^19.2.3",
37
+ "jsdom": "^29.1.1",
38
+ "react": "^19.2.7",
39
+ "react-dom": "^19.2.7",
40
+ "vitest-axe": "^0.1.0"
41
+ }
42
+ }