-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.35 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "vscode-react",
"version": "0.2.2",
"description": "Embed a browser-hosted VS Code workbench in React and bridge it to a host page over quickbus.",
"author": {
"name": "Sean Morris"
},
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"NOTICE"
],
"scripts": {
"build": "node ./scripts/build.mjs",
"test": "node --test ./tests/*.test.cjs ./tests/*.test.mjs --test-concurrency=1",
"test:e2e": "bash ./tests/e2e/run.sh",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/seanmorris/vscode-react"
},
"bugs": {
"url": "https://github.com/seanmorris/vscode-react/issues"
},
"homepage": "https://github.com/seanmorris/vscode-react#readme",
"keywords": [
"vscode",
"react",
"iframe",
"editor",
"quickbus"
],
"dependencies": {
"quickbus": "^1.0.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"baseline-browser-mapping": "^2.10.27",
"esbuild": "^0.25.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}