mirror of
https://github.com/meshtastic/web.git
synced 2025-12-24 00:00:01 -05:00
* feat: publish js libs to npm * changed license type * updated readme * added id * added exclusion for web and deno packages * update comment * updating env var
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"workspace": [
|
|
"./packages/web",
|
|
"./packages/core",
|
|
"./packages/transport-deno",
|
|
"./packages/transport-node",
|
|
"./packages/transport-http",
|
|
"./packages/transport-web-bluetooth",
|
|
"./packages/transport-web-serial"
|
|
],
|
|
"tasks": {
|
|
"build:npm": "deno run -A scripts/build_npm_package.ts"
|
|
},
|
|
"imports": {
|
|
"@bufbuild/protobuf": "npm:@bufbuild/protobuf@^2.2.3",
|
|
"@deno/dnt": "jsr:@deno/dnt@^0.42.1",
|
|
"@meshtastic/protobufs": "jsr:@meshtastic/protobufs@^2.7.0",
|
|
"@types/node": "npm:@types/node@^22.13.10",
|
|
"ste-simple-events": "npm:ste-simple-events@^3.0.11",
|
|
"tslog": "npm:tslog@^4.9.3"
|
|
},
|
|
"nodeModulesDir": "auto",
|
|
"lint": {
|
|
"exclude": [
|
|
"*routeTree.gen.ts",
|
|
"*.test.ts",
|
|
"*.test.tsx"
|
|
],
|
|
"report": "pretty"
|
|
},
|
|
"fmt": {
|
|
"exclude": [
|
|
"*routeTree.gen.ts",
|
|
"*.test.ts",
|
|
"*.test.tsx"
|
|
]
|
|
},
|
|
"unstable": [
|
|
"sloppy-imports"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"npm",
|
|
"build",
|
|
"coverage",
|
|
"out",
|
|
".vscode-test"
|
|
]
|
|
}
|