@tenphi/glaze 0.1.0 → 0.1.1
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 +16 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tenphi/glaze",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "OKHSL-based color theme generator with WCAG contrast solving for light, dark, and high-contrast schemes",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -25,21 +25,6 @@
|
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=20"
|
|
27
27
|
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "tsdown",
|
|
30
|
-
"test": "vitest run",
|
|
31
|
-
"test:watch": "vitest",
|
|
32
|
-
"test:coverage": "vitest run --coverage",
|
|
33
|
-
"typecheck": "tsc --noEmit",
|
|
34
|
-
"lint": "eslint src",
|
|
35
|
-
"lint:fix": "eslint src --fix",
|
|
36
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
37
|
-
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
38
|
-
"prepublishOnly": "pnpm run build",
|
|
39
|
-
"changeset": "changeset",
|
|
40
|
-
"version": "changeset version",
|
|
41
|
-
"release": "pnpm run build && changeset publish"
|
|
42
|
-
},
|
|
43
28
|
"repository": {
|
|
44
29
|
"type": "git",
|
|
45
30
|
"url": "git+https://github.com/tenphi/glaze.git"
|
|
@@ -73,10 +58,18 @@
|
|
|
73
58
|
"typescript-eslint": "^8.56.0",
|
|
74
59
|
"vitest": "^4.0.18"
|
|
75
60
|
},
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsdown",
|
|
63
|
+
"test": "vitest run",
|
|
64
|
+
"test:watch": "vitest",
|
|
65
|
+
"test:coverage": "vitest run --coverage",
|
|
66
|
+
"typecheck": "tsc --noEmit",
|
|
67
|
+
"lint": "eslint src",
|
|
68
|
+
"lint:fix": "eslint src --fix",
|
|
69
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
70
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
71
|
+
"changeset": "changeset",
|
|
72
|
+
"version": "changeset version",
|
|
73
|
+
"release": "pnpm run build && changeset publish"
|
|
74
|
+
}
|
|
75
|
+
}
|