-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.82 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 3.82 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
72
73
{
"name": "@milaboratories/platforma-monorepo",
"private": true,
"scripts": {
"build": "turbo run build --summarize",
"build:dev-local": "PL_BUILD_CHANNEL=dev PL_BUILD_VARIANT=all PL_BUILD_LOCATION=local pnpm build",
"build:dev-remote": "PL_BUILD_CHANNEL=dev PL_BUILD_VARIANT=all PL_BUILD_LOCATION=remote pnpm build",
"build:dev-no-software": "PL_BUILD_CHANNEL=dev PL_BUILD_VARIANT=none pnpm build",
"build:dev-binary-existing": "PL_BUILD_CHANNEL=dev PL_BUILD_USE_PUBLISHED=true pnpm build",
"build:release": "PL_BUILD_CHANNEL=release PL_BUILD_VARIANT=all PL_BUILD_LOCATION=remote pnpm build",
"test": "turbo run test --concurrency 1 --summarize",
"test:no-cache": "pnpm test -- --force",
"test:local": "PL_BUILD_CHANNEL=dev PL_BUILD_VARIANT=binary PL_BUILD_LOCATION=local pnpm test",
"test:local+dry-run": "pnpm test:local -- --dry-run=json",
"test:local+no-cache": "pnpm test:local -- --force",
"do-pack": "PL_BUILD_CHANNEL=dev PL_BUILD_VARIANT=all PL_BUILD_LOCATION=remote turbo run do-pack",
"do-pack:local": "PL_BUILD_CHANNEL=dev PL_BUILD_VARIANT=all PL_BUILD_LOCATION=local turbo run do-pack",
"changeset": "changeset",
"version-packages": "changeset version",
"prepare": "husky",
"fmt": "turbo run fmt",
"check": "turbo run check",
"formatter:check": "turbo run formatter:check",
"linter:check": "turbo run linter:check",
"types:check": "turbo run types:check",
"turbo-why": "node scripts/turbo-why.mjs",
"refresh-blocks": "block-tools structure refresh --sdk-internal etc/blocks/*",
"check-blocks": "block-tools structure check --sdk-internal etc/blocks/*",
"ci:prepare": "pnpm --filter \"@milaboratories/ts-builder...\" run build && pnpm formatter:check --output-logs=errors-only && pnpm linter:check --output-logs=errors-only",
"ci:build:local": "pnpm ci:prepare && pnpm turbo-why build:dev-local && pnpm build:dev-local --output-logs=errors-only",
"ci:build:release": "pnpm ci:prepare && pnpm turbo-why build:release && pnpm build:release --output-logs=errors-only",
"ci:test": "pnpm turbo-why test && pnpm test -- --output-logs=errors-only",
"ci:test:no-cache": "pnpm test:no-cache -- --output-logs=errors-only",
"ci:test:local": "pnpm turbo-why test:local && pnpm test:local -- --output-logs=errors-only",
"ci:test:local+no-cache": "pnpm test:local+no-cache --output-logs=errors-only",
"reset": "pnpm reset:dist && pnpm reset:node_modules && pnpm reset:turbo-cache",
"reset:dist": "find . -type d -name 'dist' | grep -v 'node_modules' | xargs rm -rf",
"reset:etc-blocks": "rimraf etc/blocks/**/.turbo !**/.pnpm/** etc/blocks/**/ui/dist etc/blocks/**/model/dist --glob",
"reset:turbo-cache": "find . -type d -name '.turbo' | grep -v '\\.pnpm' | xargs rm -r",
"reset:node_modules": "find . -type d -name 'node_modules' | grep -v '\\.pnpm' | xargs rm -r",
"pl_team:test": "pnpm ci:test"
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@typescript/typescript6": "catalog:",
"@platforma-sdk/block-tools": "workspace:*",
"@types/node": "catalog:",
"@zed-industries/vscode-langservers-extracted": "catalog:",
"husky": "catalog:",
"rimraf": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"oxfmt": "*",
"oxlint": "*"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab",
"pnpm": {
"overrides": {
"@microsoft/api-extractor>typescript": "npm:@typescript/typescript6@6.0.2"
}
},
"//": {
"@platforma-open/milaboratories.software-ptabler": "file:/Users/dbolotin/mi/core/ptabler/software/package.tgz",
"overrides": {}
}
}