-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 915 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 915 Bytes
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
{
"name": "inline-repl",
"private": true,
"version": "1.0.0",
"description": "VSCode Inline REPL Extensions",
"scripts": {
"build": "pnpm build:core && pnpm build:extensions",
"build:core": "pnpm --filter @inline-repl/core build",
"build:extensions": "pnpm --filter \"*-inline-repl\" build",
"watch": "pnpm -r watch",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"clean": "pnpm -r clean",
"clean:buildinfo": "rimraf packages/*/tsconfig.tsbuildinfo"
},
"devDependencies": {
"@types/node": "^20.17.10",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"esbuild": "^0.19.0",
"esbuild-node-externals": "^1.9.0",
"esbuild-plugin-copy": "^2.1.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.7.2"
}
}