-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.1 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
{
"name": "cleverbrush-framework",
"private": "true",
"version": "2.0.0",
"description": "Cleverbrush Framework - a set of libraries used by Cleverbrush, a web-based publishing application",
"packageManager": "npm@24.13.0",
"scripts": {
"build": "turbo run build",
"build:all": "npm run lint:fix && npm run build && node scripts/update-bundle-badge.js && node scripts/measure-bundle-sizes.js && npm run test && npm run docs && cd website && npm run build && cd ../ && npm run test:coverage && npm run bench:json",
"clean": "turbo run clean",
"watch": "tsc --build --watch tsconfig.build.json",
"docs": "typedoc && ./scripts/inject-gtm.sh website/public/api-docs/latest",
"docs:snapshot": "./scripts/snapshot-docs.sh",
"lint": "biome check ./libs ./website",
"typecheck:website": "tsc --noEmit -p website/tsconfig.json",
"lint:fix": "biome check --write ./libs ./website",
"format": "biome format --write ./libs ./website",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run clean && npm run build && changeset publish",
"publish:beta": "npm run clean && npm run build && changeset publish --tag beta",
"run_scheduler": "node ./libs/scheduler/dist/index.js",
"test": "vitest --run --typecheck",
"test:coverage": "vitest --run --coverage && node scripts/update-coverage-badges.js",
"bench": "vitest bench --run",
"bench:json": "BENCH_JSON=bench-results.json vitest bench --run --project benchmarks"
},
"workspaces": [
"./libs/*"
],
"keywords": [],
"author": "Andrew Zolotukhin <andrew_zol@cleverbrush.com>",
"license": "BSD 3-Clause",
"type": "module",
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@changesets/cli": "^2.30.0",
"@testing-library/react": "^16.3.2",
"@vitest/coverage-v8": "^4.1.2",
"jsdom": "^29.0.1",
"tsup": "^8.5.1",
"turbo": "^2.8.21",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}