-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.08 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
{
"name": "calculation-source-object-workspace",
"version": "0.1.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"workspaces": [
"packages/cso-core",
"packages/cso-react",
"apps/demo",
"apps/cso-cli"
],
"scripts": {
"dev": "npm run build:lib && tsx scripts/demo.ts dev",
"build": "npm run build:cli && tsx scripts/demo.ts build",
"build:cli": "npm run build:lib && npm run build --workspace @cs-object/cli",
"build:demo": "npm run build:lib && tsx scripts/demo.ts build",
"build:lib": "npm run build --workspace @cs-object/core && npm run build --workspace @cs-object/react",
"build:css": "npm run build:css --workspace @cs-object/react",
"test": "npm run test:projects && npm run test:python && npm run test:integration",
"test:packages": "npm run build:cli && tsx tests/integration/installed/acceptance.ts",
"typecheck": "npm run build:lib && tsc --noEmit --pretty false && npm run typecheck --workspaces",
"lint": "npm run lint --workspaces && biome lint tests scripts/check-library-archives.ts scripts/check-project-isolation.ts scripts/run-python-tests.ts",
"format": "biome format --write ./apps/demo/app ./apps/demo/src ./packages/cso-core/src ./packages/cso-react/src ./packages/cso-core/tests ./packages/cso-react/tests ./tests",
"test:library-archives": "tsx scripts/check-library-archives.ts",
"test:python": "tsx scripts/run-python-tests.ts",
"test:projects": "npm run build:cli && npm run test --workspaces",
"test:integration": "vitest run --config vitest.config.ts",
"test:isolation": "tsx scripts/check-project-isolation.ts"
},
"overrides": {
"tsup": {
"esbuild": "0.28.2"
},
"postcss": "8.5.28"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"playwright": "^1.63.0",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"tsx": "^4.23.13",
"typescript": "^5",
"vitest": "^5.0.0",
"@cs-object/core": "0.1.0",
"@cs-object/react": "0.1.0",
"zod": "^4.6.2"
}
}