gantt-renderer 0.1.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 ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "gantt-renderer",
3
+ "version": "0.1.0",
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.2"
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
+ }