UNPKG

@ahmic/autoit-js

Version:
104 lines (103 loc) 2.64 kB
{ "name": "@ahmic/autoit-js", "version": "2.1.0", "description": "Node.js bindings for AutoItX3.dll", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": "./dist/index.js" }, "scripts": { "test": "vitest", "test:ui": "vitest --ui", "test:debug": "vitest --ui --debug", "format": "prettier --write src/", "lint": "eslint src", "prebuild": "rimraf dist", "build": "tsc -p tsconfig.build.json && rollup -c", "postbuild": "cp src/lib/AutoItX3* dist/lib && cp src/lib/LICENSE dist/lib", "release": "semantic-release", "docs": "typedoc", "reset": "rimraf node_modules dist coverage .rollup.cache .docs && npm install", "commit": "cz", "prepare": "husky", "lint-staged": "lint-staged" }, "repository": { "type": "git", "url": "git+https://github.com/KasimAhmic/autoit-js.git" }, "keywords": [ "autoit", "node", "windows", "automation", "native", "bindings" ], "author": "Kasim Ahmic", "license": "MIT", "bugs": { "url": "https://github.com/KasimAhmic/autoit-js/issues" }, "homepage": "https://kasimahmic.github.io/autoit-js/", "devDependencies": { "@commitlint/cz-commitlint": "^19.8.1", "@eslint/js": "^9.32.0", "@rollup/plugin-typescript": "^12.1.4", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^11.0.3", "@semantic-release/npm": "^12.0.2", "@trivago/prettier-plugin-sort-imports": "^5.2.2", "@types/node": "^24.2.0", "@vitest/coverage-v8": "^3.2.4", "@vitest/ui": "^3.2.4", "commitizen": "^4.3.1", "cz-conventional-changelog": "^3.3.0", "eslint": "^9.32.0", "husky": "^9.1.7", "inquirer": "^9.3.7", "lint-staged": "^16.1.2", "prettier": "^3.6.2", "rimraf": "^6.0.1", "rollup": "^4.46.2", "segfault-handler": "^1.3.0", "semantic-release": "^24.2.7", "tslib": "^2.8.1", "tsx": "^4.20.3", "typedoc": "^0.28.9", "typedoc-material-theme": "^1.4.0", "typescript": "^5.9.2", "typescript-eslint": "^8.39.0", "vitest": "^3.2.4" }, "files": [ "package.json", "README.md", "LICENSE", "dist/" ], "publishConfig": { "access": "public" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog", "disableSubjectLowerCase": true } }, "lint-staged": { "src/**/*.ts": [ "prettier --write", "eslint" ], "*.{md,json}": [ "prettier --write" ] }, "dependencies": { "koffi": "^2.14.0" } }