-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 3.07 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 3.07 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cleverbrush-framework",
"private": "true",
"version": "3.1.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 --filter=!website-schema --filter=!website-docs",
"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 && npm run test:coverage && npm run bench:json",
"build:schema-site": "cd websites/schema && npm run build && cd ../..",
"build:docs-site": "cd websites/docs && npm run build && cd ../..",
"clean": "turbo run clean",
"watch": "tsc --build --watch tsconfig.build.json",
"docs": "typedoc && ./scripts/inject-gtm.sh websites/docs/public/api-docs/latest",
"docs:snapshot": "./scripts/snapshot-docs.sh",
"lint": "biome check ./libs ./websites/schema ./websites/docs",
"typecheck:schema-site": "tsc --noEmit -p websites/schema/tsconfig.json",
"typecheck:docs-site": "tsc --noEmit -p websites/docs/tsconfig.json",
"lint:fix": "biome check --write ./libs ./websites/schema ./websites/docs",
"format": "biome format --write ./libs ./websites/schema ./websites/docs",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run clean && npm run build && changeset publish",
"publish:beta": "npm run clean && npm run build && changeset version --snapshot beta && changeset publish --tag beta --no-git-tag",
"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 && node scripts/relativize-bench-paths.js bench-results.json",
"dev:demo": "./scripts/dev-demo.sh",
"dev:demo:stop": "./scripts/dev-demo-stop.sh",
"test:e2e": "npm run test -w @cleverbrush/demo-e2e",
"test:e2e:api": "npm run test:api -w @cleverbrush/demo-e2e",
"test:e2e:ui": "npm run test:ui -w @cleverbrush/demo-e2e",
"test:e2e:reset": "RESET=1 npm run test -w @cleverbrush/demo-e2e"
},
"workspaces": [
"./libs/*",
"./demos/*",
"./websites/shared",
"./websites/schema",
"./websites/docs"
],
"keywords": [],
"author": "Andrew Zolotukhin <andrew_zol@cleverbrush.com>",
"license": "BSD 3-Clause",
"type": "module",
"devDependencies": {
"@playwright/mcp": "^0.0.70",
"@biomejs/biome": "^2.4.9",
"@changesets/cli": "^2.30.0",
"@testing-library/react": "^16.3.2",
"@vitest/coverage-v8": "^4.1.2",
"concurrently": "^9.1.0",
"jsdom": "^29.0.1",
"tsup": "^8.5.1",
"turbo": "^2.8.21",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}