New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

applescript-utils

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

applescript-utils - npm Package Compare versions

Comparing version 0.0.1 to 0.1.0

index.cjs

6

index.d.ts

@@ -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';

38

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc