grbl-interpreter
Version:
Utility to easily communicate with a device running GRBL firmware
47 lines • 1.22 kB
JSON
{
"name": "grbl-interpreter",
"version": "1.0.6",
"description": "Utility to easily communicate with a device running GRBL firmware",
"keywords": [
"grbl",
"parser",
"cnc"
],
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"files": [
"index.d.ts",
"index.js",
"index.js.map"
],
"scripts": {
"dev": "tsx watch src/test/test_gcode.ts",
"clean": "rimraf dist index.d.ts index.js index.js.map index.mjs index.mjs.map",
"prebuild": "tsx src/badges.ts",
"build": "pnpm clean && tsc && rollup --config",
"pack_": "npm pack --pack-destination dist",
"package": "pnpm build && pnpm pack_",
"prepublish": "pnpm prebuild && pnpm build",
"test": "jest"
},
"author": "imivi",
"license": "MIT",
"repository": {
"type": "github",
"url": "git+https://github.com/imivi/grbl-interpreter.git"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"badge-maker": "^3.3.1",
"jest": "^29.6.2",
"rimraf": "^5.0.1",
"rollup": "^3.27.1",
"rollup-plugin-dts": "^5.3.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.1",
"tsx": "^3.12.7"
}
}