-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.01 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.01 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
{
"name": "flowscope-monorepo",
"private": true,
"type": "module",
"packageManager": "yarn@1.22.19",
"workspaces": [
"packages/*",
"app",
"vscode/webview-ui"
],
"scripts": {
"build:ts": "yarn workspaces run build",
"test": "yarn workspaces run test",
"test:ts": "yarn workspaces run test",
"check:schema": "cargo test -p flowscope-core --test schema_guard --locked && yarn workspace @pondpilot/flowscope-core test schema-compat.test.ts --silent",
"check:ts": "yarn workspace @pondpilot/flowscope-core test --silent",
"check:rust": "cargo test --workspace --locked",
"prettier": "prettier --check \"**/*.{ts,tsx,js,jsx,json}\" --ignore-path .gitignore --ignore-path .prettierignore",
"prettier:write": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\" --ignore-path .gitignore --ignore-path .prettierignore"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"prettier": "^3.8.1",
"typescript-eslint": "^8.48.0"
}
}