Skip to content

Commit af7f877

Browse files
committed
chore(ci): fixed project name
2 parents 1841346 + 75c9103 commit af7f877

File tree

3 files changed

+1434
-90
lines changed

3 files changed

+1434
-90
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [1.1.0](https://github.com/itsJess1ca/Zonr/compare/v1.0.1...v1.1.0) (2025-09-13)
2+
3+
4+
### Features
5+
6+
* add publishConfig for public npm package ([4b781eb](https://github.com/itsJess1ca/Zonr/commit/4b781eb5e5e4579e82101933bc00bce43c3a97cf))
7+
18
## [1.0.1](https://github.com/itsJess1ca/Zonr/compare/v1.0.0...v1.0.1) (2025-09-13)
29

310

package.json

Lines changed: 90 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,90 @@
1-
{
2-
"name": "@zonr-logs/core",
3-
"version": "1.0.1",
4-
"description": "A modern TypeScript library for building organized, dynamic terminal interfaces with zone-based layouts",
5-
"type": "module",
6-
"main": "dist/index.js",
7-
"types": "dist/index.d.ts",
8-
"files": [
9-
"dist",
10-
"README.md"
11-
],
12-
"scripts": {
13-
"build": "tsc",
14-
"dev": "tsc --watch",
15-
"test": "vitest",
16-
"test:ui": "vitest --ui",
17-
"test:run": "vitest run",
18-
"lint": "eslint src --ext .ts",
19-
"lint:fix": "eslint src --ext .ts --fix",
20-
"format": "prettier --write src/**/*.ts",
21-
"format:check": "prettier --check src/**/*.ts",
22-
"clean": "rimraf dist",
23-
"playground": "tsx playground/index.ts",
24-
"demo:minimal": "tsx playground/demo-minimal.ts",
25-
"demo:dashboard": "tsx playground/demo-dashboard.ts",
26-
"demo:build": "tsx playground/demo-build-system.ts",
27-
"demo:data": "tsx playground/demo-data-processing.ts",
28-
"demo:gaming": "tsx playground/demo-gaming.ts",
29-
"typecheck": "tsc --noEmit",
30-
"commit": "cz",
31-
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
32-
"release": "semantic-release",
33-
"release:dry": "semantic-release --dry-run",
34-
"prepublishOnly": "pnpm run clean && pnpm run build && pnpm run test:run && pnpm run lint && pnpm run typecheck",
35-
"prepare": "husky"
36-
},
37-
"devDependencies": {
38-
"@commitlint/cli": "^19.8.1",
39-
"@commitlint/config-conventional": "^19.8.1",
40-
"@eslint/js": "^9.35.0",
41-
"@semantic-release/changelog": "^6.0.3",
42-
"@semantic-release/git": "^10.0.1",
43-
"@types/node": "^24.3.1",
44-
"@typescript-eslint/eslint-plugin": "^8.42.0",
45-
"@typescript-eslint/parser": "^8.42.0",
46-
"@vitest/ui": "^3.2.4",
47-
"commitizen": "^4.3.1",
48-
"conventional-changelog-cli": "^5.0.0",
49-
"cz-conventional-changelog": "^3.3.0",
50-
"eslint": "^9.35.0",
51-
"eslint-config-prettier": "^10.1.8",
52-
"husky": "^9.1.7",
53-
"prettier": "^3.6.2",
54-
"rimraf": "^6.0.1",
55-
"semantic-release": "^24.2.8",
56-
"tsx": "^4.20.5",
57-
"typescript": "^5.5.3",
58-
"vitest": "^3.2.4"
59-
},
60-
"keywords": [
61-
"terminal",
62-
"cli",
63-
"tui",
64-
"terminal-ui",
65-
"zones",
66-
"layout",
67-
"dashboard",
68-
"logging",
69-
"typescript",
70-
"ansi",
71-
"console",
72-
"interface"
73-
],
74-
"author": "itsJess1ca <[email protected]>",
75-
"license": "MIT",
76-
"repository": {
77-
"type": "git",
78-
"url": "https://github.com/itsJess1ca/Zonr.git"
79-
},
80-
"engines": {
81-
"node": ">=16"
82-
},
83-
"publishConfig": {
84-
"access": "public"
85-
},
86-
"dependencies": {
87-
"sonic-boom": "^4.2.0",
88-
"string-width": "^8.1.0"
89-
}
90-
}
1+
{
2+
"name": "@zonr-logs/core",
3+
"version": "1.0.1",
4+
"description": "A modern TypeScript library for building organized, dynamic terminal interfaces with zone-based layouts",
5+
"type": "module",
6+
"main": "dist/index.js",
7+
"types": "dist/index.d.ts",
8+
"files": [
9+
"dist",
10+
"README.md"
11+
],
12+
"scripts": {
13+
"build": "tsc",
14+
"dev": "tsc --watch",
15+
"test": "vitest",
16+
"test:ui": "vitest --ui",
17+
"test:run": "vitest run",
18+
"lint": "eslint src --ext .ts",
19+
"lint:fix": "eslint src --ext .ts --fix",
20+
"format": "prettier --write src/**/*.ts",
21+
"format:check": "prettier --check src/**/*.ts",
22+
"clean": "rimraf dist",
23+
"playground": "tsx playground/index.ts",
24+
"demo:minimal": "tsx playground/demo-minimal.ts",
25+
"demo:dashboard": "tsx playground/demo-dashboard.ts",
26+
"demo:build": "tsx playground/demo-build-system.ts",
27+
"demo:data": "tsx playground/demo-data-processing.ts",
28+
"demo:gaming": "tsx playground/demo-gaming.ts",
29+
"typecheck": "tsc --noEmit",
30+
"commit": "cz",
31+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
32+
"release": "semantic-release",
33+
"release:dry": "semantic-release --dry-run",
34+
"prepublishOnly": "pnpm run clean && pnpm run build && pnpm run test:run && pnpm run lint && pnpm run typecheck",
35+
"prepare": "husky"
36+
},
37+
"devDependencies": {
38+
"@commitlint/cli": "^19.8.1",
39+
"@commitlint/config-conventional": "^19.8.1",
40+
"@eslint/js": "^9.35.0",
41+
"@semantic-release/changelog": "^6.0.3",
42+
"@semantic-release/git": "^10.0.1",
43+
"@types/node": "^24.3.1",
44+
"@typescript-eslint/eslint-plugin": "^8.42.0",
45+
"@typescript-eslint/parser": "^8.42.0",
46+
"@vitest/ui": "^3.2.4",
47+
"commitizen": "^4.3.1",
48+
"conventional-changelog-cli": "^5.0.0",
49+
"cz-conventional-changelog": "^3.3.0",
50+
"eslint": "^9.35.0",
51+
"eslint-config-prettier": "^10.1.8",
52+
"husky": "^9.1.7",
53+
"prettier": "^3.6.2",
54+
"rimraf": "^6.0.1",
55+
"semantic-release": "^24.2.8",
56+
"tsx": "^4.20.5",
57+
"typescript": "^5.5.3",
58+
"vitest": "^3.2.4"
59+
},
60+
"keywords": [
61+
"terminal",
62+
"cli",
63+
"tui",
64+
"terminal-ui",
65+
"zones",
66+
"layout",
67+
"dashboard",
68+
"logging",
69+
"typescript",
70+
"ansi",
71+
"console",
72+
"interface"
73+
],
74+
"author": "itsJess1ca <[email protected]>",
75+
"license": "MIT",
76+
"repository": {
77+
"type": "git",
78+
"url": "https://github.com/itsJess1ca/Zonr.git"
79+
},
80+
"engines": {
81+
"node": ">=16"
82+
},
83+
"publishConfig": {
84+
"access": "public"
85+
},
86+
"dependencies": {
87+
"sonic-boom": "^4.2.0",
88+
"string-width": "^8.1.0"
89+
}
90+
}

0 commit comments

Comments
 (0)