-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.19 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
{
"name": "sukoon-monorepo",
"version": "0.0.0",
"private": true,
"description": "A privacy-first, open-source media filter that removes background music while keeping speech clear. Shared Rust engine, thin platform shells.",
"homepage": "https://github.com/ruwadgroup/sukoon#readme",
"bugs": {
"url": "https://github.com/ruwadgroup/sukoon/issues"
},
"license": "Apache-2.0",
"author": "Tamim Bin Hakim (@tamimbinhakim)",
"repository": {
"type": "git",
"url": "git+https://github.com/ruwadgroup/sukoon.git"
},
"workspaces": [
"packages/ui",
"apps/extension",
"apps/desktop",
"apps/web"
],
"scripts": {
"build:rust": "cargo build --release",
"test:rust": "cargo test",
"lint": "pnpm lint:ts && pnpm lint:rust && pnpm lint:docs",
"lint:ts": "oxlint .",
"lint:rust": "cargo clippy --all-targets -- -D warnings",
"lint:docs": "prettier --check \"**/*.{md,json,yaml,yml}\"",
"format": "pnpm format:ts && pnpm format:rust && pnpm format:docs",
"format:ts": "oxfmt --ignore-path .oxfmtignore .",
"format:rust": "cargo fmt --all",
"format:docs": "prettier --write \"**/*.{md,json,yaml,yml}\"",
"format:check": "pnpm format:check:ts && pnpm format:check:rust && pnpm format:check:docs",
"format:check:ts": "oxfmt --ignore-path .oxfmtignore --check .",
"format:check:rust": "cargo fmt --all -- --check",
"format:check:docs": "prettier --check \"**/*.{md,json,yaml,yml}\"",
"clean": "cargo clean && rimraf node_modules apps/*/node_modules apps/*/dist",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"husky": "9.1.7",
"lint-staged": "17.0.4",
"oxfmt": "0.49.0",
"oxlint": "1.64.0",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"typescript": "6.0.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"oxlint --fix",
"oxfmt --ignore-path .oxfmtignore"
],
"*.rs": [
"rustfmt --edition 2021"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@11.0.9"
}