-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 834 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 834 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": "@typescript/playground",
"version": "0.1.2",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"types": "../../typescriptlang-org/public/js/playground/index.d.ts",
"files": [
"dist"
],
"scripts": {
"//bootstrap": "node scripts/getListOfPluginsFromNPM.js",
"build-fast-test": "esbuild src/index.ts --outdir=../typescriptlang-org/public/js/playground/2 --format=esm --target=es2020 --bundle",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@typescript/playground-worker": "workspace:*",
"@typescript/sandbox": "workspace:*",
"esbuild": "^0.17.8"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/react": "^18.3.2",
"jest": "^29.5.0",
"monaco-editor": "^0.32.1",
"monaco-typescript": "^3.7.0",
"typescript": "*"
}
}