-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "courant",
"version": "0.2.0",
"description": "Renderless Vue3 Components, to get up and running with WebRTC fast 🚀",
"keywords": ["vue", "vue3", "WebRTC", "renderless", "video chat"],
"author": "Reed Jones <reedjones@reedjones.com> (https://www.reedjones.com)",
"bugs": "https://github.com/reed-jones/courant/issues",
"homepage": "https://github.com/reed-jones/courant#readme",
"repository": "github:reed-jones/courant",
"license": "ISC",
"main": "dist/courant.cjs.js",
"module": "dist/courant.esm.js",
"browser": "dist/courant.umd.js",
"scripts": {
"dev": "node server-dev.js",
"//dev": "vite",
"build": "vite build",
"prod": "rollup -c"
},
"dependencies": {
"courant": "./",
"tailwindcss": "^1.4.6",
"vue": "^3.0.0-beta.14",
"vue-router": "^4.0.0-alpha.12"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@vue/compiler-sfc": "^3.0.0-beta.14",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"rollup": "^2.16.1",
"socket.io": "^2.3.0",
"twilio": "^3.46.0",
"vite": "^0.20.0"
}
}