-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.57 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.57 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
{
"name": "devup-ui",
"private": true,
"version": "1.0.0",
"description": "devup-ui",
"type": "module",
"scripts": {
"lint": "cargo fmt --all -- --check && cargo clippy --all-targets --all-features -- -D warnings && eslint",
"lint:fix": "eslint --fix && cargo fmt",
"test": "cargo tarpaulin --out xml --out stdout --all-targets --engine llvm && bun test",
"test:e2e": "bunx playwright test",
"test:e2e:ui": "bunx playwright test --ui",
"test:e2e:update": "bunx playwright test --update-snapshots",
"build": "bun run --filter @devup-ui/wasm --filter @devup-ui/plugin-utils build && bun run --filter @devup-ui/react --filter @devup-ui/webpack-plugin build && bun run --filter @devup-ui/eslint-plugin --filter @devup-ui/vite-plugin --filter @devup-ui/next-plugin --filter @devup-ui/rsbuild-plugin --filter @devup-ui/bun-plugin --filter @devup-ui/components --filter @devup-ui/reset-css build",
"dev": "bun run --filter '*' dev",
"benchmark": "bun benchmark.js",
"prepare": "husky",
"changepacks": "bunx @changepacks/cli"
},
"devDependencies": {
"@devup-ui/eslint-plugin": "workspace:^",
"@playwright/test": "^1.58.2",
"@types/bun": "latest",
"@types/node": "^25.2",
"bun-test-env-dom": "^1.0.3",
"eslint": "^9",
"eslint-plugin-devup": "^2.0",
"eslint-plugin-eslint-plugin": "^7.3",
"eslint-plugin-jsonc": "^2.21",
"eslint-plugin-mdx": "^3.6",
"globals": "^17.3",
"husky": "^9.1"
},
"author": "devfive",
"workspaces": [
"packages/*",
"apps/*",
"bindings/*",
"benchmark/*"
]
}