forked from adobe-extension-tools/extendscript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 849 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "extendscript-starter",
"version": "0.0.1",
"description": "Starter project for extendscript-bundler, uses livereload and has a \"poor mans redux\"",
"main": "index.js",
"scripts": {
"start": "extendscript-bundler watch",
"build": "extendscript-bundler build",
"test": "tsc -p src/AfterEffects/tsconfig.json; tsc -p src/Audition/tsconfig.json; tsc -p src/Illustrator/tsconfig.json; tsc -p src/InDesign/tsconfig.json; tsc -p src/Photoshop/tsconfig.json; tsc -p src/Premiere/tsconfig.json; tsc -p src/ScriptUI/tsconfig.json"
},
"author": "Koen Schmeets",
"license": "MIT",
"devDependencies": {
"extendscript-bundler": "^0.0.6",
"extendscript-es5-shim-ts": "^0.0.1",
"redux": "^3.7.2",
"types-for-adobe": "github:pravdomil/types-for-adobe",
"typescript": "^2.6.2"
},
"dependencies": {}
}