applescript-utils
Advanced tools
Comparing version 0.0.1 to 0.1.0
@@ -1,1 +0,5 @@ | ||
export {}; | ||
export { toggleCheckbox } from './utils/checkbox.js'; | ||
export { clickElement, createElementReference, createElementReferences, getElements, } from './utils/element.js'; | ||
export { runAppleScript } from './utils/run.js'; | ||
export { allowSystemSoftware, giveAppPermissionAccess, openSystemPreferencesPane, reopenSystemPreferences, } from './utils/system-preferences.js'; | ||
export { waitForElementExists, waitForElementHidden, waitForWindow, } from './utils/window.js'; |
@@ -1,1 +0,5 @@ | ||
export {}; | ||
export { toggleCheckbox } from './utils/checkbox.js'; | ||
export { clickElement, createElementReference, createElementReferences, getElements, } from './utils/element.js'; | ||
export { runAppleScript } from './utils/run.js'; | ||
export { allowSystemSoftware, giveAppPermissionAccess, openSystemPreferencesPane, reopenSystemPreferences, } from './utils/system-preferences.js'; | ||
export { waitForElementExists, waitForElementHidden, waitForWindow, } from './utils/window.js'; |
{ | ||
"name": "applescript-utils", | ||
"version": "0.0.1", | ||
"version": "0.1.0", | ||
"description": "Utilities for AppleScript scripts.", | ||
@@ -17,3 +17,6 @@ "license": "MIT", | ||
"type": "module", | ||
"exports": "./index.js", | ||
"exports": { | ||
"import": "./index.js", | ||
"require": "./index.cjs" | ||
}, | ||
"dependencies": { | ||
@@ -26,29 +29,10 @@ "execa": "^6.1.0", | ||
"devDependencies": { | ||
"@commitlint/cli": "^15.0.0", | ||
"@leonzalion/configs": "latest", | ||
"@types/node": "^17.0.0", | ||
"@leonzalion/configs": "^1.2.16", | ||
"@types/node": "^17.0.24", | ||
"desm": "^1.2.0", | ||
"eslint": "^8.5.0", | ||
"eslint-define-config": "^1.2.5", | ||
"lint-staged": "^12.1.3", | ||
"lion-git-hooks": "^1.0.2", | ||
"lion-system": "latest", | ||
"lionp": "^1.0.23", | ||
"prettier": "^2.5.1", | ||
"tsc-alias": "^1.6.1", | ||
"typescript": "^4.5.4", | ||
"vitest": "^0.5.9" | ||
"eslint-define-config": "^1.3.0", | ||
"lion-system": "^1.3.9", | ||
"typescript": "^4.6.3", | ||
"vitest": "^0.9.3" | ||
}, | ||
"prettier": "@leonzalion/configs/prettier.cjs", | ||
"commitlint": { | ||
"extends": [ | ||
"@leonzalion/configs/commitlint.cjs" | ||
] | ||
}, | ||
"lint-staged": { | ||
"*.{js,ts}": [ | ||
"pnpm run lint", | ||
"pnpm run prettier" | ||
] | ||
}, | ||
"publishConfig": { | ||
@@ -55,0 +39,0 @@ "directory": "dist" |
import { outdent } from 'outdent'; | ||
import pWaitFor from 'p-wait-for'; | ||
import { toggleCheckbox } from '../utils/checkbox.js'; | ||
import { clickElement, createElementReferences, getElements, } from '../utils/element.js'; | ||
import { runAppleScript } from '../utils/run.js'; | ||
import { toggleCheckbox } from '../utils/checkbox.js'; | ||
import { createElementReferences, clickElement, getElements, } from '../utils/element.js'; | ||
import { waitForElementExists, waitForElementHidden, waitForWindow, } from '../utils/window.js'; | ||
@@ -7,0 +7,0 @@ // https://apple.stackexchange.com/questions/422165/applescript-system-preferences-automation |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 5 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
98998
7
18
2899
10
2