-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.88 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
70
71
{
"name": "podkit",
"private": true,
"type": "module",
"packageManager": "bun@1.3.9",
"workspaces": [
"packages/*",
"test-packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"podkit": "bun 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:perf": "turbo run test:perf",
"test:e2e": "turbo run test:e2e",
"test:e2e:docker": "turbo run test:e2e:docker",
"test:vm": "turbo run test:vm",
"quality": "turbo run qa",
"harness:create": "bun run --cwd test-packages/device-testing harness:create",
"harness:start": "bun run --cwd test-packages/device-testing harness:start",
"harness:stop": "bun run --cwd test-packages/device-testing harness:stop",
"harness:destroy": "bun run --cwd test-packages/device-testing harness:destroy",
"harness:shell": "bun run --cwd test-packages/device-testing harness:shell",
"harness:status": "bun run --cwd test-packages/device-testing harness:status",
"harness:install": "bun run --cwd test-packages/device-testing harness:install",
"harness:setup": "bun run --cwd test-packages/device-testing harness:setup",
"harness:builder:stop": "bun run --cwd test-packages/device-testing harness:builder:stop",
"harness:builder:destroy": "bun run --cwd test-packages/device-testing harness:builder:destroy",
"test:e2e:real": "IPOD_TARGET=real turbo run test:e2e --filter=@podkit/e2e-tests",
"lint": "oxlint --config oxlint.json . && bun scripts/check-cli-stderr-writes.mjs",
"lint:fix": "oxlint --config oxlint.json --fix .",
"lint:conventions": "bun scripts/check-cli-stderr-writes.mjs",
"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.9.18",
"typescript": "^5.9.0"
}
}