@ooneex/tag 0.0.1 → 0.0.4

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/dist/index.d.ts CHANGED
@@ -2,6 +2,6 @@ import { IColor } from "@ooneex/color";
2
2
  import { IBase } from "@ooneex/types";
3
3
  interface ITag extends IBase {
4
4
  name: string;
5
- color?: IColor;
5
+ color?: IColor | undefined;
6
6
  }
7
7
  export { ITag };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ooneex/tag",
3
- "description": "",
4
- "version": "0.0.1",
3
+ "description": "Tag type definitions and utilities for content labeling with color-coded visual identification",
4
+ "version": "0.0.4",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",
@@ -24,14 +24,21 @@
24
24
  "scripts": {
25
25
  "build": "bunup",
26
26
  "lint": "tsgo --noEmit && bunx biome lint",
27
- "publish:prod": "bun publish --tolerate-republish --access public",
28
- "publish:pack": "bun pm pack --destination ./dist",
29
- "publish:dry": "bun publish --dry-run"
27
+ "publish": "bun publish --access public || true",
28
+ "test": "bun test tests"
30
29
  },
31
30
  "dependencies": {},
32
31
  "devDependencies": {
33
32
  "@ooneex/color": "0.0.1",
34
33
  "@ooneex/types": "0.0.1"
35
34
  },
36
- "peerDependencies": {}
35
+ "keywords": [
36
+ "bun",
37
+ "ooneex",
38
+ "tag",
39
+ "tagging",
40
+ "tags",
41
+ "taxonomy",
42
+ "typescript"
43
+ ]
37
44
  }
Binary file