forked from tryopendata/openchart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.57 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@opendata-ai/monorepo",
"version": "1.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tryopendata/openchart.git"
},
"homepage": "https://github.com/tryopendata/openchart#readme",
"bugs": "https://github.com/tryopendata/openchart/issues",
"author": "Riley Hilliard",
"engines": {
"node": ">=18"
},
"workspaces": [
"packages/*",
"examples"
],
"scripts": {
"build": "bun run --filter '@opendata-ai/openchart-core' build && bun run --filter '@opendata-ai/openchart-engine' build && bun run --filter '@opendata-ai/openchart-vanilla' --filter '@opendata-ai/openchart-react' --filter '@opendata-ai/openchart-vue' --filter '@opendata-ai/openchart-svelte' build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome check packages/ examples/src/",
"lint:fix": "biome check --write packages/ examples/src/",
"format": "biome format --write packages/ examples/src/",
"typecheck": "bun run --filter './packages/*' typecheck",
"dev": "cd examples && bun run dev",
"release": "node scripts/release.mjs",
"prepare": "husky"
},
"overrides": {
"strip-ansi": "6.0.1",
"string-width": "4.2.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@vitest/coverage-v8": "^4.0.18",
"happy-dom": "^20.8.3",
"husky": "^9.1.7",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
}
}