-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
61 lines (61 loc) · 1.57 KB
/
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
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
{
"name": "@previewjs/plugin-vue3",
"version": "6.1.2",
"license": "MIT",
"author": {
"name": "François Wouts",
"email": "f@zenc.io"
},
"repository": {
"type": "git",
"url": "https://github.com/fwouts/previewjs"
},
"bugs": {
"url": "https://github.com/fwouts/previewjs/issues"
},
"homepage": "https://previewjs.com",
"sideEffects": false,
"type": "commonjs",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./setup": {
"module": "./setup.mjs",
"default": "./setup.js"
}
},
"scripts": {
"prepublish": "cd .. && pnpm turbo run build --scope=@previewjs/plugin-vue3 --no-deps --include-dependencies",
"build": "tsc && unbuild",
"test": "vitest --no-threads",
"e2e-test": "playwright test"
},
"dependencies": {
"@previewjs/csf3": "^3.1.2",
"@previewjs/serializable-values": "^3.2.1",
"@previewjs/type-analyzer": "^4.1.3",
"@previewjs/vfs": "^1.2.14",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/compiler-sfc": "^3.2.45",
"acorn": "^8.8.1",
"fs-extra": "^11.1.0",
"typescript": "^4.9.4",
"vue": "^3.2.45"
},
"devDependencies": {
"@playwright/test": "^1.29.1",
"@previewjs/core": "workspace:*",
"@previewjs/testing": "workspace:*",
"@types/fs-extra": "^9.0.13",
"unbuild": "^1.0.2",
"vite": "^4.0.3",
"vitest": "^0.25.8"
}
}