-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 4.22 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 4.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "risklab-ui-workspace",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Workspace repo for the independent RiskLab UI component packages.",
"workspaces": [
"packages/ui",
"ui/react",
"ui/vanilla",
"ui/vue",
"ui/svelte",
"ui/angular",
"ui/lit",
"ui/solid"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "npm run test:coverage --workspace=ui/vanilla",
"test:browser": "playwright test",
"check:source": "node tools/check-source.mjs",
"lint": "eslint packages ui tests tools --ext .ts,.tsx,.js,.mjs",
"typecheck:ui": "npm run typecheck --workspace=packages/ui",
"typecheck:ui-vanilla": "npm run typecheck --workspace=ui/vanilla",
"typecheck:ui-react": "npm run typecheck --workspace=ui/react",
"typecheck:ui-vue": "npm run typecheck --workspace=ui/vue",
"typecheck:ui-svelte": "npm run typecheck --workspace=ui/svelte",
"typecheck:ui-angular": "npm run typecheck --workspace=ui/angular",
"typecheck:ui-lit": "npm run typecheck --workspace=ui/lit",
"typecheck:ui-solid": "npm run typecheck --workspace=ui/solid",
"typecheck:all": "npm run typecheck --workspace=packages/ui && npm run typecheck --workspace=ui/vanilla && npm run typecheck --workspace=ui/react && npm run typecheck --workspace=ui/vue && npm run typecheck --workspace=ui/svelte && npm run typecheck --workspace=ui/angular && npm run typecheck --workspace=ui/lit && npm run typecheck --workspace=ui/solid",
"test:all": "npm run test && npm run test --workspace=ui/vanilla && npm run test --workspace=ui/react && npm run test --workspace=ui/vue && npm run test --workspace=ui/svelte && npm run test --workspace=ui/angular && npm run test --workspace=ui/lit && npm run test --workspace=ui/solid",
"build:ui-core": "npm run build --workspace=ui/vanilla && npm run build --workspace=packages/ui",
"build:ui-react": "npm run build --workspace=ui/react",
"build:ui-vue": "npm run build --workspace=ui/vue",
"build:ui-svelte": "npm run build --workspace=ui/svelte",
"build:ui-angular": "npm run build --workspace=ui/angular",
"build:ui-lit": "npm run build --workspace=ui/lit",
"build:ui-solid": "npm run build --workspace=ui/solid",
"build:all": "npm run build --workspace=ui/vanilla && npm run build --workspace=packages/ui && npm run build --workspace=ui/react && npm run build --workspace=ui/vue && npm run build --workspace=ui/svelte && npm run build --workspace=ui/angular && npm run build --workspace=ui/lit && npm run build --workspace=ui/solid",
"pack:all": "npm pack --dry-run --workspace=packages/ui && npm pack --dry-run --workspace=ui/vanilla && npm pack --dry-run --workspace=ui/react && npm pack --dry-run --workspace=ui/vue && npm pack --dry-run --workspace=ui/svelte && npm pack --dry-run --workspace=ui/angular && npm pack --dry-run --workspace=ui/lit && npm pack --dry-run --workspace=ui/solid",
"smoke:install": "node ./tools/smoke-install.mjs",
"release:check": "npm run check:source && npm run lint && npm run typecheck:all && npm run test:all && npm run test:coverage && npm run build:all && npm run test:browser && npm run pack:all && npm run smoke:install"
},
"keywords": [
"risklab",
"ui",
"design-system",
"components",
"web-components",
"react",
"vue",
"svelte",
"angular",
"lit",
"solid",
"workbench",
"operator-console",
"analytical-applications"
],
"author": "Sarah Walsh",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/devgrrl/risklab-ui",
"directory": "."
},
"homepage": "https://devgrrl.github.io/",
"bugs": {
"url": "https://github.com/devgrrl/risklab-ui/issues"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.55.0",
"@types/node": "^25.5.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^3.2.7",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^29.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.2.7"
},
"engines": {
"node": ">=20.0.0"
}
}