@mongrov/theme 0.2.0 → 0.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.
Files changed (1) hide show
  1. package/package.json +11 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mongrov/theme",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Theme contract and color scheme management for React Native / Expo apps",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -36,6 +36,15 @@
36
36
  "files": [
37
37
  "dist"
38
38
  ],
39
+ "scripts": {
40
+ "build": "tsc -p tsconfig.build.json",
41
+ "clean": "rm -rf dist",
42
+ "prebuild": "pnpm run clean",
43
+ "test": "jest --coverage",
44
+ "test:watch": "jest --watch",
45
+ "typecheck": "tsc --noEmit",
46
+ "prepublishOnly": "pnpm run build"
47
+ },
39
48
  "peerDependencies": {
40
49
  "react": ">=18",
41
50
  "react-native": ">=0.74",
@@ -59,13 +68,5 @@
59
68
  "ts-jest": "^29.1.2",
60
69
  "typescript": "^5.9.3",
61
70
  "zustand": "^5.0.10"
62
- },
63
- "scripts": {
64
- "build": "tsc -p tsconfig.build.json",
65
- "clean": "rm -rf dist",
66
- "prebuild": "pnpm run clean",
67
- "test": "jest --coverage",
68
- "test:watch": "jest --watch",
69
- "typecheck": "tsc --noEmit"
70
71
  }
71
- }
72
+ }