-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.75 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
{
"name": "serialpilot-drivers-monorepo",
"private": true,
"version": "0.0.0",
"description": "Higher-level device drivers for SerialPilot — GRBL, GPS/NMEA, ESP flasher.",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@10.9.2",
"license": "MIT",
"scripts": {
"build": "lerna run clean && lerna run build",
"format": "eslint --fix",
"lint": "eslint",
"outdated": "lerna exec --no-bail npm outdated && npm outdated",
"publish": "changeset publish",
"release": "changeset publish",
"version": "changeset version",
"changeset": "changeset",
"test": "nyc --reporter lcov --reporter text mocha",
"test:watch": "mocha -w",
"typecheck": "lerna exec tsc && npm run typecheck:examples",
"typecheck:examples": "for d in examples/*/; do (cd \"$d\" && npx tsc --noEmit) || exit 1; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serialpilot/serialpilot-drivers.git"
},
"homepage": "https://github.com/serialpilot/serialpilot-drivers#readme",
"bugs": "https://github.com/serialpilot/serialpilot-drivers/issues",
"workspaces": [
"packages/*",
"drivers/*",
"examples/*"
],
"devDependencies": {
"@changesets/cli": "2.31.0",
"@eslint/js": "9.39.2",
"@stylistic/eslint-plugin": "5.6.1",
"@tsconfig/node24": "24.0.3",
"@types/chai": "5.2.3",
"@types/debug": "4.1.12",
"@types/mocha": "10.0.10",
"@types/node": "25.0.3",
"@types/sinon": "21.0.0",
"chai": "6.2.2",
"eslint": "9.39.2",
"eslint-plugin-mocha": "11.2.0",
"globals": "15.14.0",
"lerna": "9.0.7",
"mocha": "11.7.5",
"nyc": "17.1.0",
"sinon": "21.0.1",
"tsx": "4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "8.51.0"
}
}