forked from dev-five-git/devup-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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
{
"name": "devup-ui",
"private": true,
"version": "1.0.0",
"description": "devup-ui",
"type": "module",
"scripts": {
"lint": "pnpm -F @devup-ui/* lint && cargo fmt --all -- --check && cargo clippy --all-targets --all-features -- -D warnings && eslint",
"pretest": "pnpm -F @devup-ui/vite-plugin build",
"test": "cargo tarpaulin --out xml --out stdout --out html --all-targets && vitest test --coverage --run && pnpm -r test",
"build": "pnpm -F wasm build && pnpm -F @devup-ui/* -F !wasm build",
"dev": "pnpm -r dev",
"benchmark": "node benchmark.js",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5",
"@changesets/cli": "^2.29",
"@devup-ui/eslint-plugin": "workspace:*",
"@devup-ui/vite-plugin": "workspace:*",
"@testing-library/jest-dom": "^6.9",
"@testing-library/react": "^16.3",
"@testing-library/user-event": "14.6",
"@types/node": "^24.9",
"@vitest/coverage-v8": "^4.0",
"eslint": "^9.38",
"eslint-plugin-devup": "^2.0",
"eslint-plugin-eslint-plugin": "^7.1",
"eslint-plugin-jsonc": "^2.21",
"eslint-plugin-mdx": "^3.6",
"globals": "^16.4",
"happy-dom": "^20.0",
"husky": "^9.1",
"lint-staged": "^16.2",
"vitest": "^4.0"
},
"author": "devfive",
"packageManager": "pnpm@10.19.0",
"resolutions": {
"@devup-ui/eslint-plugin": "workspace:*"
},
"workspaces": [
"packages/*",
"apps/*",
"bindings/*",
"benchmark/*"
]
}