You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
760 B
42 lines
760 B
{ |
|
"name": "run-applescript", |
|
"version": "7.0.0", |
|
"description": "Run AppleScript and get the result", |
|
"license": "MIT", |
|
"repository": "sindresorhus/run-applescript", |
|
"funding": "https://github.com/sponsors/sindresorhus", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "https://sindresorhus.com" |
|
}, |
|
"type": "module", |
|
"exports": { |
|
"types": "./index.d.ts", |
|
"default": "./index.js" |
|
}, |
|
"sideEffects": false, |
|
"engines": { |
|
"node": ">=18" |
|
}, |
|
"scripts": { |
|
"test": "xo && ava && tsd" |
|
}, |
|
"files": [ |
|
"index.js", |
|
"index.d.ts" |
|
], |
|
"keywords": [ |
|
"macos", |
|
"mac", |
|
"applescript", |
|
"osascript", |
|
"run", |
|
"execute" |
|
], |
|
"devDependencies": { |
|
"ava": "^6.0.1", |
|
"tsd": "^0.30.0", |
|
"xo": "^0.56.0" |
|
} |
|
}
|
|
|