forked from analogdevicesinc/codefusion-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 KB
/
package.json
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": "adi-cfs",
"publisher": "Analog Devices",
"version": "1.0.0-1",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": "^18.x"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@tsconfig/node18": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.56.0",
"markdownlint-cli2": "^0.13.0",
"prettier": "^3.1.1",
"prettier-config-xo": "^2.0.0",
"puppeteer": "^23.2.2",
"react-router-dom": "^6.24.1",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5"
},
"resolutions": {
"got@npm:^13.0.0": "12.4.1",
"@vscode/vsce@npm:^2.18.0": "2.23.0",
"@vscode/vsce@npm:^2.26.1": "2.23.0",
"@vscode/vsce@npm:^2.27.0": "2.23.0",
"@vscode/vsce@npm:^2.29.0": "2.23.0",
"@vscode/vsce@npm:^2.31.1": "2.23.0"
},
"scripts": {
"lint": "eslint --fix . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build": "yarn run lint",
"typecheck": "tsc --noEmit",
"lint:docs": "markdownlint-cli2 'docs/**/*.md'",
"preinstall": "npx only-allow yarn",
"ws:ide": "yarn workspace cfs-ide",
"ws:ui": "yarn workspace pinconfig",
"ws:cli": "yarn workspace cfsutil",
"ws:add-engine": "yarn workspace add-codegen",
"ws:add-soc": "yarn workspace add-soc",
"ws:lib": "yarn workspace cfs-lib",
"ws:elf-parser": "yarn workspace elf-parser",
"ws:react-lib": "yarn workspace cfs-react-library",
"cfsutil": "yarn ws:cli cfsutil",
"ui-package": "yarn ws:ui package",
"ide-package": "yarn ws:ide package"
},
"workspaces": [
"packages/*",
"packages/cli-plugins/*"
]
}