-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 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
{
"name": "simple-web-serial",
"version": "1.4.1",
"description": "Connect an Arduino with your web application, in seconds. Use an event-driven approach and take advantage of a pre-configured web serial api setup routine.",
"keywords": [
"serial port",
"web serial api",
"simple web serial",
"simple-web-serial",
"SimpleWebSerialJS"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.mjs",
"types": "dist/index.d.ts",
"files": [
"./dist",
"./README.md",
"./CHANGELOG.md",
"./docs/.gitbook/assets/titelbild-v4.jpg",
"./examples"
],
"directories": {
"example": "examples"
},
"scripts": {
"dev": "rslib build --watch",
"build": "rslib build",
"test": "vitest --run",
"test:unit": "vitest unit --run",
"test:build": "vitest build --run",
"test:watch": "vitest",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fmgrafikdesign/SimpleWebSerialJS.git"
},
"author": "Fabian Mohr",
"license": "ISC",
"bugs": {
"url": "https://github.com/fmgrafikdesign/SimpleWebSerialJS/issues"
},
"homepage": "https://github.com/fmgrafikdesign/SimpleWebSerialJS#readme",
"dependencies": {
"@types/w3c-web-serial": "^1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@microsoft/api-extractor": "^7.48.1",
"@rslib/core": "^0.1.4",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vitest": "^2.1.8"
}
}