-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@antitoxic/mac-openchrometab",
"version": "1.0.0",
"license": "MIT",
"author": "Anton Stoychev",
"description": "Opens URL in chrome, reusing tab if present",
"repository": "github:antitoxic/mac-openchrometab",
"main": "./lib/index.js",
"os": [
"darwin"
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/antitoxic"
},
"scripts": {
"start": "concurrently --names \"tsc,esbuild\" --prefix-colors \"blue,yellow\" \"pnpm start:node\" \"pnpm start:jxa\"",
"start:node": "pnpm build:node --watch --preserveWatchOutput",
"start:jxa": "find src/jxa -type f -exec pnpm esbuild:jxa --watch \"{}\" + ;",
"build": "concurrently --names \"tsc,esbuild\" --prefix-colors \"blue,yellow\" \"pnpm build:node\" \"pnpm build:jxa\"",
"build:node": "tsc --project ./tsconfig.node.build.json",
"build:jxa": "find src/jxa -type f -exec pnpm esbuild:jxa {} + ;",
"esbuild:jxa": "esbuild --target=node8 --bundle --outdir=lib/jxa",
"prepack": "pnpm build"
},
"devDependencies": {
"@jxa/types": "^1.3.6",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^20.6.3",
"concurrently": "^8.2.0",
"esbuild": "^0.19.3",
"typescript": "^5.1.6"
}
}