-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1021 Bytes
/
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
{
"name": "window-pipe",
"repository": {
"url": "https://github.com/it-xtech-dev/message-pipe"
},
"version": "1.0.0",
"type": "module",
"main": "dist/window-pipe.es.js",
"module": "./dist/window-pipe.es.js",
"types": "./src/types/WindowPipe.d.ts",
"files": [
"dist/*",
"src/*"
],
"exports": {
".": {
"import": "./dist/window-pipe.es.js",
"require": "./dist/window-pipe.cjs.js",
"types": "./src/types/WindowPipe.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"typeme": "vue-tsc ./src/WindowPipe.ts --declaration --emitDeclarationOnly --esModuleInterop --outDir ./src/types --target esnext",
"packme": "rimraf --glob ./packed/* && npm pack --pack-destination ./packed",
"preview": "vite preview"
},
"devDependencies": {
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"@vitejs/plugin-vue": "^4.1.0",
"rimraf": "^4.4.1",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vue-tsc": "^1.2.0"
}
}