-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 3.63 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": "physical-ai-toolchain",
"version": "0.8.0",
"private": true,
"engines": {
"node": ">=24"
},
"description": "Physical AI Toolchain",
"workspaces": [
"data-management/viewer/frontend"
],
"scripts": {
"spell-check": "cspell \"**/*.{md,ts,js,json,yaml,yml,py,sh}\"",
"spell-check:fix": "cspell \"**/*.{md,ts,js,json,yaml,yml,py,sh}\" --show-suggestions",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:md:fix": "markdownlint-cli2 \"**/*.md\" --fix",
"lint:ps": "pwsh -File scripts/linting/Invoke-PSScriptAnalyzer.ps1",
"lint:py": "uvx --with ruff==0.15.21 ruff check .",
"lint:hfpins": "uv run --no-project python3 scripts/security/check_hf_pins.py",
"lint:links": "pwsh -File scripts/linting/Invoke-LinkLanguageCheck.ps1",
"lint:go": "pwsh -File scripts/linting/Invoke-GoLint.ps1",
"lint:sh": "pwsh -File scripts/linting/Invoke-ShellCheck.ps1",
"lint:yaml": "pwsh -File scripts/linting/Invoke-YamlLint.ps1",
"lint:tf": "pwsh -File scripts/linting/Invoke-TFLint.ps1",
"lint:tf:validate": "pwsh -File scripts/linting/Invoke-TerraformValidation.ps1",
"lint:toml": "taplo fmt --check",
"lint:uvlock": "pwsh -File scripts/linting/Invoke-UvLockConsistencyCheck.ps1",
"lint:ci": "node scripts/ci/validate-workflows.mjs",
"lint:vuln": "osv-scanner --config osv-scanner.toml .",
"lint:all": "npm run lint:md && npm run lint:ps && npm run lint:links && npm run lint:yaml && npm run lint:tf && npm run lint:toml && npm run lint:go && npm run lint:sh && npm run lint:py && npm run lint:hfpins && npm run lint:uvlock",
"format:toml": "taplo fmt",
"format:tables": "markdown-table-formatter \"**/*.md\"",
"test:ps": "pwsh -File ./scripts/tests/Invoke-PesterTests.ps1",
"test:ci": "node --test --experimental-test-coverage --test-coverage-include=\"scripts/ci/*.mjs\" --test-coverage-exclude=\"scripts/tests/**\" --test-coverage-lines=80 --test-coverage-branches=80 --test-coverage-functions=80 scripts/tests/ci/ci-contract.test.mjs",
"test:tf": "pwsh -File scripts/linting/Invoke-TerraformTest.ps1",
"test:go": "pwsh -File scripts/linting/Invoke-GoTest.ps1",
"prepare": "husky",
"docs:build": "npm --prefix docs/docusaurus run build",
"docs:start": "npm --prefix docs/docusaurus start",
"docs:test": "npm --prefix docs/docusaurus test",
"docs:serve": "npm --prefix docs/docusaurus run serve",
"docs:typecheck": "npm --prefix docs/docusaurus run typecheck",
"docs:lint": "npm --prefix docs/docusaurus run lint:a11y",
"docs:lint:labels": "npm --prefix docs/docusaurus run lint:label-registry",
"docs:test:coverage": "npm --prefix docs/docusaurus run test:coverage",
"ci:docs:test:e2e": "npm --prefix docs/docusaurus run ci:test:e2e",
"ci:docs:setup:e2e": "npm --prefix docs/docusaurus exec -- playwright install --with-deps chrome",
"validate:docs": "npm run docs:lint && npm run docs:lint:labels && npm run docs:test:coverage",
"docs:generate:tf": "pwsh -File scripts/Update-TerraformDocs.ps1",
"dataviewer:dev": "npm --prefix data-management/viewer run dev",
"dataviewer:analyze": "npm run analyze --workspace robotic-training-data-tool"
},
"devDependencies": {
"@taplo/cli": "0.7.0",
"concurrently": "10.0.5",
"cspell": "10.3.1",
"husky": "9.1.7",
"lint-staged": "17.5.1",
"markdown-link-check": "3.15.0",
"markdown-table-formatter": "1.7.0",
"markdownlint-cli2": "0.23.2",
"yaml": "2.9.1"
},
"overrides": {
"smol-toml": "1.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/physical-ai-toolchain.git"
},
"author": "Microsoft",
"license": "MIT"
}