-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 833 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "nova-ui-workspace",
"private": true,
"version": "1.0.0",
"description": "Enterprise React component library and VitePress docs",
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"dev:docs": "npm run dev --workspace @wuyangfan/nova-ui-docs",
"build:ui": "npm run build --workspace @wuyangfan/nova-ui",
"build:docs": "npm run build --workspace @wuyangfan/nova-ui-docs",
"typecheck:ui": "npm run typecheck --workspace @wuyangfan/nova-ui",
"lint:ui": "npm run lint --workspace @wuyangfan/nova-ui",
"test:ui": "npm run test --workspace @wuyangfan/nova-ui",
"test:coverage:ui": "npm run test:coverage --workspace @wuyangfan/nova-ui",
"new:component": "npm run new:component --workspace @wuyangfan/nova-ui --",
"build": "npm run build:ui && npm run build:docs"
}
}