-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.09 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.09 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
{
"name": "physical-ai-toolchain",
"version": "0.7.4",
"private": true,
"engines": {
"node": ">=24"
},
"description": "Physical AI Toolchain",
"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 ruff check .",
"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:all": "npm run lint:md && npm run lint:ps && npm run lint:links && npm run lint:yaml && npm run lint:tf && npm run lint:go && npm run lint:sh && npm run lint:py",
"format:tables": "markdown-table-formatter \"**/*.md\"",
"test:ps": "pwsh -File ./scripts/tests/Invoke-PesterTests.ps1",
"test:tf": "pwsh -File scripts/linting/Invoke-TerraformTest.ps1",
"test:go": "pwsh -File scripts/linting/Invoke-GoTest.ps1",
"prepare": "husky",
"docs:build": "cd docs/docusaurus && npm run build",
"docs:start": "cd docs/docusaurus && npm start",
"docs:test": "cd docs/docusaurus && npm test",
"docs:serve": "cd docs/docusaurus && npm run serve",
"docs:generate:tf": "pwsh -File scripts/Update-TerraformDocs.ps1"
},
"devDependencies": {
"cspell": "10.0.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"markdown-link-check": "3.14.2",
"markdown-table-formatter": "1.7.0",
"markdownlint-cli2": "0.22.0"
},
"overrides": {
"smol-toml": ">=1.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/physical-ai-toolchain.git"
},
"author": "Microsoft",
"license": "MIT"
}