-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 800 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "markdownai",
"private": true,
"version": "1.4.0",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*",
"e2e"
],
"scripts": {
"build": "npm run build --workspaces",
"dev": "npm run dev --workspaces",
"test:e2e": "npm run test:unit --workspace=e2e",
"test:run-state": "vitest run e2e/run-state-*.test.ts",
"version": "node scripts/sync-version.mjs && git add packages/*/package.json",
"release:vscode": "npm run build --workspace packages/vscode && npm run package --workspace packages/vscode && echo \"\n✓ Upload packages/vscode/markdownai-$(node -e \"process.stdout.write(require('./packages/vscode/package.json').version)\").vsix to https://marketplace.visualstudio.com/manage\""
},
"engines": {
"node": ">=18"
}
}