-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 963 Bytes
/
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
{
"name": "vscode-extension-template",
"displayName": "VS Code Extension Template",
"version": "0.1.0",
"private": true,
"description": "Modern VS Code extension template with Turbo, TypeScript, WebView, React, and Tailwind",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter=vscode-extension...",
"lint": "turbo lint",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo test",
"watch": "turbo watch --filter=vscode-extension..."
},
"devDependencies": {
"@cs-magic/md-toc": "^0.5.2",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.1.0",
"turbo": "^1.10.16",
"typescript": "^5.3.2",
"vite": "^5.0.0"
}
}