-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2 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
{
"name": "podkit",
"private": true,
"type": "module",
"packageManager": "bun@1.3.9",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"podkit": "node packages/podkit-cli/dist/main.js",
"postinstall": "manypkg check",
"build": "turbo run build",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:e2e": "turbo run test --filter=@podkit/e2e-tests",
"test:e2e:real": "IPOD_TARGET=real turbo run test --filter=@podkit/e2e-tests",
"test:e2e:docker": "SUBSONIC_E2E=1 bun run --cwd packages/e2e-tests src/scripts/run-parallel.ts src/workflows/subsonic-sync.e2e.test.ts src/features/artwork-change.e2e.test.ts src/features/compilation-subsonic.e2e.test.ts",
"lint": "oxlint --config oxlint.json .",
"lint:fix": "oxlint --config oxlint.json --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo run typecheck",
"compile": "turbo run compile --filter=podkit",
"clean": "turbo run clean --no-cache && rm -rf node_modules",
"changeset": "bunx changeset",
"version": "bunx changeset version && bun install --ignore-scripts",
"demo": "turbo run record --filter=@podkit/demo",
"docs:dev": "bun run --cwd packages/docs-site dev",
"docs:build": "bun run --cwd packages/docs-site build",
"docs:preview": "bun run --cwd packages/docs-site preview",
"generate-fixtures": "turbo run generate-fixtures",
"prepare": "husky"
},
"manypkg": {
"workspaceProtocol": "require"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "oxlint --config oxlint.json",
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@manypkg/cli": "^0.25.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxlint": "^1.49.0",
"prettier": "^3.8.1",
"turbo": "^2.8.10",
"typescript": "^5.9.0"
}
}