gantt-renderer 0.1.1 → 0.1.2

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 (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +5 -5
  3. package/package.json +91 -72
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.1.2](https://github.com/doberkofler/gantt-renderer/compare/v0.1.1...v0.1.2) (2026-05-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * improve the documentation ([948cbf6](https://github.com/doberkofler/gantt-renderer/commit/948cbf62e25272116eea54ef03bf5d5ef522cfe8))
7
+
1
8
  ## [0.1.1](https://github.com/doberkofler/gantt-renderer/compare/v0.1.0...v0.1.1) (2026-05-07)
2
9
 
3
10
 
package/README.md CHANGED
@@ -6,15 +6,15 @@
6
6
  [![Node.js CI](https://github.com/doberkofler/gantt-renderer/actions/workflows/ci.yml/badge.svg)](https://github.com/doberkofler/gantt-renderer/actions/workflows/ci.yml)
7
7
  [![Coverage Status](https://coveralls.io/repos/github/doberkofler/gantt-renderer/badge.svg?branch=main)](https://coveralls.io/github/doberkofler/gantt-renderer?branch=main)
8
8
 
9
- ![Gantt chart demo](docs/images/gantt-demo.png)
9
+ ![Gantt chart demo](https://raw.githubusercontent.com/doberkofler/gantt-renderer/main/docs/images/gantt-demo.png)
10
10
 
11
11
  **[Live Demo →](https://doberkofler.github.io/gantt-renderer/)**
12
12
   | 
13
- **[Usage Guide →](./docs/guide.md)**
13
+ **[Usage Guide →](https://github.com/doberkofler/gantt-renderer/blob/main/docs/guide.md)**
14
14
   | 
15
15
  **[API Docs →](https://doberkofler.github.io/gantt-renderer/docs/api/)**
16
16
   | 
17
- **[Contributing →](./CONTRIBUTING.md)**
17
+ **[Contributing →](https://github.com/doberkofler/gantt-renderer/blob/main/CONTRIBUTING.md)**
18
18
 
19
19
  A TypeScript Gantt chart renderer for **precalculated project plans**.
20
20
 
@@ -86,8 +86,8 @@ const instance = new GanttChart(document.getElementById('chart')!, input, {
86
86
 
87
87
  ## Further Reading
88
88
 
89
- - **[Usage Guide](./docs/guide.md)** — All constructor options: locale, theme, grid schema, CSS tokens,
89
+ - **[Usage Guide](https://github.com/doberkofler/gantt-renderer/blob/main/docs/guide.md)** — All constructor options: locale, theme, grid schema, CSS tokens,
90
90
  link creation, special days, density constants, and more.
91
91
  - **[API Documentation](https://doberkofler.github.io/gantt-renderer/docs/api/)** — TypeDoc-generated
92
92
  API reference.
93
- - **[Contributing](./CONTRIBUTING.md)** — Dev setup, scripts, demo verification, and code conventions.
93
+ - **[Contributing](https://github.com/doberkofler/gantt-renderer/blob/main/CONTRIBUTING.md)** — Dev setup, scripts, demo verification, and code conventions.
package/package.json CHANGED
@@ -1,73 +1,92 @@
1
1
  {
2
- "name": "gantt-renderer",
3
- "version": "0.1.1",
4
- "files": [
5
- "dist",
6
- "CHANGELOG.md"
7
- ],
8
- "type": "module",
9
- "main": "./dist/index.mjs",
10
- "module": "./dist/index.mjs",
11
- "types": "./dist/index.d.mts",
12
- "exports": {
13
- ".": {
14
- "types": "./dist/index.d.mts",
15
- "import": "./dist/index.mjs",
16
- "default": "./dist/index.mjs"
17
- },
18
- "./styles/gantt.css": "./dist/styles/gantt.css"
19
- },
20
- "dependencies": {
21
- "debug": "4.4.3",
22
- "zod": "4.4.3"
23
- },
24
- "devDependencies": {
25
- "@commitlint/cli": "20.5.3",
26
- "@commitlint/config-conventional": "20.5.3",
27
- "@playwright/test": "1.59.1",
28
- "@tsdown/css": "0.21.10",
29
- "@types/debug": "4.1.13",
30
- "@types/node": "25.6.0",
31
- "@vitest/browser": "4.1.5",
32
- "@vitest/browser-playwright": "4.1.5",
33
- "@vitest/coverage-istanbul": "4.1.5",
34
- "@vitest/coverage-v8": "4.1.5",
35
- "conventional-changelog": "7.2.0",
36
- "eslint-plugin-regexp": "3.1.0",
37
- "husky": "9.1.7",
38
- "oxfmt": "0.47.0",
39
- "oxlint": "1.62.0",
40
- "oxlint-tsgolint": "0.22.1",
41
- "playwright": "1.59.1",
42
- "release-it": "20.0.1",
43
- "stylelint": "17.10.0",
44
- "stylelint-config-standard": "40.0.0",
45
- "tsdown": "0.21.10",
46
- "typedoc": "0.28.19",
47
- "typescript": "6.0.3",
48
- "vite": "8.0.10",
49
- "vitest": "4.1.5"
50
- },
51
- "scripts": {
52
- "typecheck": "tsc --noEmit",
53
- "lint": "oxlint",
54
- "lint:css": "stylelint 'src/**/*.css'",
55
- "lint:css:fix": "stylelint --fix 'src/**/*.css'",
56
- "format": "oxfmt --write && stylelint --fix 'src/**/*.css'",
57
- "format:check": "oxfmt --check",
58
- "ci": "pnpm run typecheck && pnpm run lint && pnpm run lint:css && pnpm run format:check && pnpm run build:lib && pnpm run build && pnpm run docs:api && pnpm run test",
59
- "test": "vitest run",
60
- "test:build": "vitest run --config vitest.node.config.ts",
61
- "release": "release-it",
62
- "create-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
63
- "dev": "vite",
64
- "build": "vite build",
65
- "build:lib": "tsdown",
66
- "build:demo": "vite build",
67
- "docs:api": "typedoc",
68
- "preview": "vite preview",
69
- "test:ui": "vitest",
70
- "integration-test": "playwright test",
71
- "screenshot": "npx tsx scripts/screenshot.ts"
72
- }
73
- }
2
+ "name": "gantt-renderer",
3
+ "version": "0.1.2",
4
+ "description": "A TypeScript Gantt chart renderer for precalculated project plans",
5
+ "keywords": [
6
+ "chart",
7
+ "gantt",
8
+ "project",
9
+ "renderer",
10
+ "timeline"
11
+ ],
12
+ "homepage": "https://doberkofler.github.io/gantt-renderer/",
13
+ "bugs": {
14
+ "url": "https://github.com/doberkofler/gantt-renderer/issues"
15
+ },
16
+ "license": "MIT",
17
+ "author": "doberkofler",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/doberkofler/gantt-renderer.git"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "CHANGELOG.md"
25
+ ],
26
+ "type": "module",
27
+ "main": "./dist/index.mjs",
28
+ "module": "./dist/index.mjs",
29
+ "types": "./dist/index.d.mts",
30
+ "exports": {
31
+ ".": {
32
+ "types": "./dist/index.d.mts",
33
+ "import": "./dist/index.mjs",
34
+ "default": "./dist/index.mjs"
35
+ },
36
+ "./styles/gantt.css": "./dist/styles/gantt.css"
37
+ },
38
+ "scripts": {
39
+ "typecheck": "tsc --noEmit",
40
+ "lint": "oxlint",
41
+ "lint:css": "stylelint 'src/**/*.css'",
42
+ "lint:css:fix": "stylelint --fix 'src/**/*.css'",
43
+ "format": "oxfmt --write && stylelint --fix 'src/**/*.css'",
44
+ "format:check": "oxfmt --check",
45
+ "ci": "pnpm run typecheck && pnpm run lint && pnpm run lint:css && pnpm run format:check && pnpm run build:lib && pnpm run build && pnpm run docs:api && pnpm run test",
46
+ "test": "vitest run",
47
+ "test:build": "vitest run --config vitest.node.config.ts",
48
+ "release": "release-it",
49
+ "create-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
50
+ "prepare": "husky",
51
+ "dev": "vite",
52
+ "build": "vite build",
53
+ "build:lib": "tsdown",
54
+ "build:demo": "vite build",
55
+ "docs:api": "typedoc",
56
+ "preview": "vite preview",
57
+ "test:ui": "vitest",
58
+ "integration-test": "playwright test",
59
+ "screenshot": "npx tsx scripts/screenshot.ts"
60
+ },
61
+ "dependencies": {
62
+ "debug": "4.4.3",
63
+ "zod": "4.4.3"
64
+ },
65
+ "devDependencies": {
66
+ "@commitlint/cli": "20.5.3",
67
+ "@commitlint/config-conventional": "20.5.3",
68
+ "@playwright/test": "1.59.1",
69
+ "@tsdown/css": "0.21.10",
70
+ "@types/debug": "4.1.13",
71
+ "@types/node": "25.6.0",
72
+ "@vitest/browser": "4.1.5",
73
+ "@vitest/browser-playwright": "4.1.5",
74
+ "@vitest/coverage-istanbul": "4.1.5",
75
+ "@vitest/coverage-v8": "4.1.5",
76
+ "conventional-changelog": "7.2.0",
77
+ "eslint-plugin-regexp": "3.1.0",
78
+ "husky": "9.1.7",
79
+ "oxfmt": "0.47.0",
80
+ "oxlint": "1.62.0",
81
+ "oxlint-tsgolint": "0.22.1",
82
+ "playwright": "1.59.1",
83
+ "release-it": "20.0.1",
84
+ "stylelint": "17.10.0",
85
+ "stylelint-config-standard": "40.0.0",
86
+ "tsdown": "0.21.10",
87
+ "typedoc": "0.28.19",
88
+ "typescript": "6.0.3",
89
+ "vite": "8.0.10",
90
+ "vitest": "4.1.5"
91
+ }
92
+ }