-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.01 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
67
68
69
70
71
72
{
"name": "vite-plugin-web-components-hmr",
"version": "0.1.3",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@7.23.0",
"description": "Vite plugin for HMR of web components",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fi3ework/vite-plugin-web-components-hmr.git"
},
"author": "fi3ework <fi3ework@gmail.com> (http://github.com/fi3ework)",
"homepage": "https://github.com/fi3ework/vite-plugin-web-components-hmr",
"main": "src/index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./src/index.js"
}
},
"scripts": {
"prepublishOnly": "cp ../../README.md ./",
"postpublish": "rimraf ./README.md",
"clone": "tsx scripts/clone.ts",
"start:fast": "wds --config demo/fast-element/server.config.mjs",
"start:haunted": "wds --config demo/haunted/server.config.mjs",
"start:lit": "wds --config demo/lit-element/server.config.mjs",
"start:lit-ts": "wds --config demo/lit-element-ts/server.config.mjs",
"start:storybook": "wds --config demo/storybook/server.config.mjs",
"start:vanilla": "wds --config demo/vanilla/server.config.mjs",
"test": "npm run test:node",
"test:node": "mocha test-node --recursive",
"test:watch": "npm run test:node -- --watch --watchfiles test"
},
"files": [
"dist",
"index.mjs",
"index.d.ts",
"src"
],
"keywords": [
"web",
"dev server",
"hmr",
"hot",
"module",
"replacement",
"reload",
"web",
"components"
],
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-import-attributes": "^7.23.3",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"picomatch": "^4.0.1"
},
"peerDependencies": {
"vite": ">=2"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/node": "^20.11.17",
"rimraf": "^5.0.5",
"vite": "^5.1.1"
}
}