-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"files": [
"dist"
],
"main": "./dist/vite-coffee.umd.js",
"module": "./dist/vite-coffee.es.js",
"exports": {
".": {
"import": "./dist/vite-coffee.es.js",
"require": "./dist/vite-coffee.umd.js",
"types": "./dist/types/main.d.ts"
}
},
"types": "./dist/types/main.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koiyakiya/vite-coffee.git"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly --outDir ./dist/types",
"preserve": "vite build",
"serve": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "exit 0"
},
"name": "vite-coffee",
"version": "1.0.0",
"type": "module",
"dependencies": {
"vue": "^3.4.33"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@vitejs/plugin-vue": "^5.0.5",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vue-tsc": "^2.0.28"
}
}