@qovira/theme 0.0.0 → 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 +10 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qovira/theme",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Qovira's visual foundation — Tailwind v4 tokens, self-hosted fonts, and a framework-agnostic theming runtime.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"qovira",
|
|
@@ -17,9 +17,8 @@
|
|
|
17
17
|
"homepage": "https://github.com/qovira/theme#readme",
|
|
18
18
|
"bugs": "https://github.com/qovira/theme/issues",
|
|
19
19
|
"type": "module",
|
|
20
|
-
"packageManager": "pnpm@11.3.0",
|
|
21
20
|
"engines": {
|
|
22
|
-
"node": ">=
|
|
21
|
+
"node": ">=24"
|
|
23
22
|
},
|
|
24
23
|
"sideEffects": [
|
|
25
24
|
"*.css"
|
|
@@ -36,13 +35,6 @@
|
|
|
36
35
|
"publishConfig": {
|
|
37
36
|
"access": "public"
|
|
38
37
|
},
|
|
39
|
-
"scripts": {
|
|
40
|
-
"build": "tsup && node scripts/copy-assets.mjs",
|
|
41
|
-
"typecheck": "tsc --noEmit",
|
|
42
|
-
"lint": "eslint . && prettier --check .",
|
|
43
|
-
"format": "prettier --write .",
|
|
44
|
-
"test": "vitest run"
|
|
45
|
-
},
|
|
46
38
|
"peerDependencies": {
|
|
47
39
|
"tailwindcss": "^4.0.0"
|
|
48
40
|
},
|
|
@@ -65,5 +57,12 @@
|
|
|
65
57
|
"typescript": "^6.0.3",
|
|
66
58
|
"typescript-eslint": "^8.60.1",
|
|
67
59
|
"vitest": "^4.1.8"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsup && node scripts/copy-assets.mjs",
|
|
63
|
+
"typecheck": "tsc --noEmit",
|
|
64
|
+
"lint": "eslint . && prettier --check .",
|
|
65
|
+
"format": "prettier --write .",
|
|
66
|
+
"test": "vitest run"
|
|
68
67
|
}
|
|
69
|
-
}
|
|
68
|
+
}
|