-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 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
59
60
61
62
63
64
65
66
{
"name": "@webcontainer/test",
"version": "0.3.0",
"description": "Utilities for testing applications in WebContainers",
"author": "StackBlitz Inc.",
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./plugin": {
"import": {
"types": "./dist/plugin.d.ts",
"default": "./dist/plugin.js"
}
}
},
"files": [
"dist"
],
"homepage": "https://github.com/stackblitz/webcontainer-test",
"bugs": "https://github.com/stackblitz/webcontainer-test",
"repository": {
"type": "git",
"url": "git+https://github.com/stackblitz/webcontainer-test.git"
},
"keywords": [
"testing",
"webcontainer",
"playwright",
"vitest"
],
"packageManager": "pnpm@10.4.1",
"scripts": {
"build": "tsup",
"dev": "tsup --watch --sourcemap",
"test": "vitest run",
"test:watch": "vitest --project Chromium --browser.provider preview --browser.headless=false",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@webcontainer/api": "^1.6.1",
"@webcontainer/snapshot": "^0.1.0"
},
"peerDependencies": {
"vitest": "^4"
},
"devDependencies": {
"@blitz/eslint-plugin": "^0.1.4",
"@types/node": "^22.14.0",
"@vitest/browser-playwright": "^4.0.14",
"eslint": "^9.24.0",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^4.0.14"
},
"prettier": {}
}