-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.83 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
49
50
51
{
"name": "@viscalyx/developer-mode-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo for @viscalyx/developer-mode-core and @viscalyx/developer-mode-react",
"license": "MIT",
"author": "Viscalyx",
"type": "module",
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check --error-on-warnings --assist-enabled=false --formatter-enabled=false .",
"lint:fix": "biome check --write --assist-enabled=false --formatter-enabled=false .",
"format": "biome check --write --linter-enabled=false .",
"format:check": "biome check --linter-enabled=false --max-diagnostics=none .",
"type-check": "tsc -b && tsc --noEmit -p tsconfig.test.json",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\"",
"check": "npm run type-check && npm run format:check && npm run lint && npm run lint:md && npm run build && npm run test",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"purge:install": "rimraf node_modules && npm cache clean --force && npm install && rimraf package-lock.json && npm install"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@changesets/cli": "^2.31.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"happy-dom": "^20.9.0",
"markdownlint-cli2": "^0.22.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.1.3",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"//overrides": {},
"overrides": {}
}