-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.38 KB
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
{
"name": "mstudio-ae-plugin",
"version": "2.0.1",
"description": "MStudio Sync Plugin for Adobe After Effects - bidirectional project sync",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run bundle",
"bundle": "esbuild src/index.ts --bundle --format=iife --outfile=dist/index.js --target=es2020",
"watch": "esbuild src/index.ts --bundle --format=iife --outfile=dist/index.js --target=es2020 --watch",
"clean": "rm -rf dist",
"dev": "npm run watch",
"typecheck": "tsc --noEmit",
"install-plugin": "node -e \"const{platform}=require('os');const{execSync}=require('child_process');if(platform()==='win32'){execSync('powershell -ExecutionPolicy Bypass -File install.ps1',{stdio:'inherit'})}else{execSync('bash install.sh',{stdio:'inherit'})}\"",
"uninstall-plugin": "node -e \"const{platform}=require('os');const{execSync}=require('child_process');if(platform()==='win32'){execSync('powershell -ExecutionPolicy Bypass -File uninstall.ps1',{stdio:'inherit'})}else{execSync('bash uninstall.sh',{stdio:'inherit'})}\"",
"build-bin": "bun run scripts/build-bin.ts",
"install-bin": "bun run scripts/install.ts",
"uninstall-bin": "bun run scripts/uninstall.ts"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"esbuild": "^0.28.0",
"typescript": "^5.4.0"
},
"author": "ModelsLab",
"license": "UNLICENSED",
"private": true
}