-
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) · 2.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.26 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": "fricon",
"private": true,
"version": "0.1.3",
"scripts": {
"gen:bindings": "pnpm --filter fricon-ui run gen:bindings",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write --experimental-cli .",
"format:check": "prettier --check --experimental-cli .",
"check": "run-p -c type-check lint depcruise:frontend",
"fix": "run-s -c lint:fix format",
"type-check": "pnpm -r run type-check",
"test": "pnpm --filter fricon-ui run test",
"test:unit": "pnpm --filter fricon-ui run test:unit",
"test:browser": "pnpm --filter fricon-ui run test:browser",
"test:browser:headed": "pnpm --filter fricon-ui run test:browser:headed",
"test:smoke": "wdio run tests/desktop-smoke/wdio.conf.mjs",
"build": "pnpm --filter fricon-ui run build",
"depcruise:frontend": "pnpm --dir crates/fricon-ui/frontend exec depcruise --config .dependency-cruiser.cjs src",
"bundle-licenses": "run-p -c bundle-licenses:rust bundle-licenses:npm",
"bundle-licenses:rust": "cd crates/fricon-py && cargo bundle-licenses --format toml --output ../../THIRD_PARTY_RUST.toml",
"bundle-licenses:npm": "pnpm --filter fricon-ui run bundle-licenses && node -e \"const fs=require('node:fs');const path=require('node:path');const src=path.resolve('crates','fricon-ui','frontend','dist','THIRD_PARTY_NPM.md');const dst=path.resolve('THIRD_PARTY_NPM.md');fs.renameSync(src,dst);\""
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"type": "module",
"devDependencies": {
"@eslint-react/eslint-plugin": "4.2.3",
"@eslint/compat": "2.0.5",
"@eslint/js": "10.0.1",
"@tauri-apps/cli": "2.10.1",
"@types/node": "24.12.2",
"@wdio/cli": "9.27.0",
"@wdio/local-runner": "9.27.0",
"@wdio/mocha-framework": "9.27.0",
"@wdio/spec-reporter": "9.27.0",
"dependency-cruiser": "17.3.10",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.4.0",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"typescript-eslint": "8.58.1"
}
}