@agot/card-preview 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/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@agot/card-preview",
3
+ "version": "1.0.0",
4
+ "author": "Stephen Patane",
5
+ "license": "ISC",
6
+ "description": "A React component library for rendering \"A Game of Thrones LCG 2nd Edition\" cards.",
7
+ "publishConfig": {
8
+ "registry": "https://registry.npmjs.org/",
9
+ "access": "public"
10
+ },
11
+ "main": "dist/index.cjs.js",
12
+ "module": "dist/index.mjs",
13
+ "types": "dist/index.d.ts",
14
+ "scripts": {
15
+ "build": "tsup src/index.tsx --format esm,cjs --dts --out-dir dist --clean",
16
+ "prepublishOnly": "npm run build"
17
+ },
18
+ "keywords": [],
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "peerDependencies": {
23
+ "react": "^19.1.0"
24
+ },
25
+ "dependencies": {
26
+ "classnames": "^2.5.1"
27
+ },
28
+ "devDependencies": {
29
+ "@types/react": "^19.2.2",
30
+ "tsup": "^8.5.0",
31
+ "typescript": "~5.8.3"
32
+ }
33
+ }