-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.7 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
{
"name": "focus4-packages",
"version": "12.0.0",
"description": "Focus v4 (Typescript + MobX)",
"homepage": "https://github.com/klee-contrib/focus4",
"license": "MIT",
"author": "damien.frikha@kleegroup.com",
"repository": {
"type": "git",
"url": "https://github.com/klee-contrib/focus4.git"
},
"workspaces": [
"packages/tooling",
"packages/core",
"packages/styling",
"packages/toolbox",
"packages/entities",
"packages/stores",
"packages/forms",
"packages/form-toolbox",
"packages/layout",
"packages/collections",
"packages/legacy",
"packages/docs"
],
"type": "module",
"main": "",
"scripts": {
"build": "npm run build --workspaces --if-present",
"clean": "node scripts/clean.mjs",
"docgen": "node scripts/docgen.mjs",
"docs": "storybook dev --docs -p 6006 -c packages/docs/.storybook",
"docs-build": "storybook build --docs -c packages/docs/.storybook -o docs",
"oxlint": "oxlint packages",
"postinstall": "node scripts/postinstall.mjs",
"test": "vitest run",
"test-ci": "vitest run --coverage",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@tsdown/css": "0.22.14",
"@types/css-tree": "3.2.0",
"@vitest/coverage-v8": "4.1.11",
"beachball": "2.65.6",
"css-tree": "3.2.1",
"react-docgen-typescript": "2.4.0",
"rimraf": "6.1.3",
"storybook": "10.5.10",
"tsdown": "0.22.14",
"tslib": "2.8.1",
"typescript": "6.0.3",
"vitest": "4.1.11"
}
}