-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.5 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
62
63
64
65
66
{
"name": "vue-serial",
"files": [
"dist"
],
"main": "./dist/vue-serial.mjs",
"module": "./dist/vue-serial.umd.js",
"typings": "./dist/vue-serial.d.ts",
"exports": {
".": {
"import": "./dist/vue-serial.mjs",
"require": "./dist/vue-serial.umd.js",
"types": "./dist/vue-serial.d.ts"
}
},
"version": "1.0.2",
"description": "Web Serial for Vue.js",
"author": {
"name": "Romain Lamothe",
"url": "http://www.motla.fr/"
},
"license": "MIT",
"keywords": [
"vue",
"vuejs",
"webserial",
"web",
"serial",
"rs-232",
"uart",
"usart",
"usb",
"ftdi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/motla/vue-serial.git"
},
"bugs": {
"url": "https://github.com/motla/vue-serial/issues"
},
"homepage": "https://github.com/motla/vue-serial",
"scripts": {
"dev": "vite",
"build:demo": "vite build",
"build:lib": "vite build --mode library && tsc -b",
"typedoc": "typedoc"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/w3c-web-serial": "^1.0.6",
"@vitejs/plugin-basic-ssl": "^1.0.2",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/tsconfig": "^0.5.1",
"monaco-editor": "^0.44.0",
"typedoc": "^0.25.6",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"vite": "^4.4.11",
"vue": "^3.3.4",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0"
}
}