web-dash-builder
Version:
CLI for dash building
118 lines • 2.85 kB
JSON
{
"name": "web-dash-builder",
"version": "0.0.48",
"description": "CLI for dash building",
"main": "index.js",
"repository": {
"url": "https://github.com/Luisricardo2825/web-dash-builder"
},
"bin": {
"wdb": "./index.js",
"web-dash-builder": "./index.js"
},
"license": "MIT",
"type": "module",
"keywords": [
"napi-rs",
"NAPI",
"N-API",
"Rust",
"node-addon",
"node-addon-api"
],
"files": [
"index.d.ts",
"index.js",
"main.cjs",
"main.d.ts"
],
"napi": {
"binaryName": "web-dash-builder",
"targets": [
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin"
]
},
"engines": {
"node": ">= 6.14.2 < 7 || >= 8.11.2 < 9 || >= 9.11.0 < 10 || >= 10.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"artifacts": "napi artifacts",
"bench": "node --import @oxc-node/core/register benchmark/bench.ts",
"build": "napi build --platform --release --js main.cjs --dts main.d.ts",
"build:debug": "napi build --platform",
"format": "run-p format:prettier format:rs format:toml",
"format:prettier": "prettier . -w",
"format:toml": "taplo format",
"format:rs": "cargo fmt",
"lint": "oxlint .",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"version": "napi version",
"prepare": "husky"
},
"devDependencies": {
"@emnapi/core": "^1.4.3",
"@emnapi/runtime": "^1.4.3",
"@napi-rs/cli": "^3.0.0",
"@oxc-node/core": "^0.0.29",
"@taplo/cli": "^0.7.0",
"@tybys/wasm-util": "^0.10.0",
"@types/node": "^24.0.15",
"ava": "^6.4.0",
"chalk": "^5.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.3.0",
"prettier": "^3.6.0",
"tinybench": "^4.0.1",
"typescript": "^5.8.3",
"vite": "7.0.5"
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"oxlint --fix"
],
"*.@(js|ts|tsx|yml|yaml|md|json)": [
"prettier --write"
],
"*.toml": [
"taplo format"
]
},
"ava": {
"extensions": {
"ts": "module"
},
"timeout": "2m",
"workerThreads": false,
"environmentVariables": {
"OXC_TSCONFIG_PATH": "./__test__/tsconfig.json"
},
"nodeArguments": [
"--import",
"@oxc-node/core/register"
]
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"packageManager": "yarn@4.9.2",
"optionalDependencies": {
"web-dash-builder-win32-x64-msvc": "0.0.48",
"web-dash-builder-darwin-x64": "0.0.48",
"web-dash-builder-linux-x64-gnu": "0.0.48",
"web-dash-builder-darwin-arm64": "0.0.48"
}
}