-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.79 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
{
"name": "tradview",
"private": true,
"version": "1.1.0",
"description": "TradingView-style embeddable K-line chart framework",
"packageManager": "pnpm@10.17.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"dev:mock": "pnpm --filter @coderyo/cli-dev dev:mock",
"dev:playground": "pnpm --filter @coderyo/playground dev",
"demo": "node scripts/demo.mjs --mode=dev",
"demo:build": "pnpm build && pnpm --filter @coderyo/playground build",
"demo:serve": "node scripts/demo.mjs --mode=preview",
"build:cdn": "pnpm --filter @coderyo/cdn-bundle build",
"check:cdn-size": "node scripts/check-cdn-size.mjs",
"check:lwc-size": "node scripts/check-lwc-size.mjs",
"check:webgl-size": "node scripts/check-webgl-size.mjs",
"bench:webgl": "node scripts/bench-webgl-renderer.mjs",
"version:sync": "node scripts/sync-versions.mjs",
"arch:boundary": "pnpm --filter @coderyo/core exec vitest run tests/arch-boundary.test.ts",
"test:scripts": "vitest run scripts/check-rc.test.mjs",
"test:e2e-visual": "pnpm --filter @tradview/e2e-visual exec playwright test",
"test:e2e-visual:update": "pnpm build && pnpm --filter @coderyo/playground build && pnpm --filter @tradview/e2e-visual exec playwright install chromium && pnpm --filter @tradview/e2e-visual exec playwright test --update-snapshots",
"check:rc": "node scripts/check-rc.mjs",
"publish:rc": "pnpm check:rc && pnpm -r publish --access public --tag rc --no-git-checks"
},
"devDependencies": {
"@coderyo/eslint-config": "workspace:*",
"@coderyo/tsconfig": "workspace:*",
"eslint": "^9.28.0",
"prettier": "^3.5.3",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}