-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.77 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.77 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "adobe-ide",
"version": "0.0.12",
"cep": {
"name": "Adobe IDE",
"id": "com.aedt.adobe-ide",
"hosts": "*",
"debugInProduction": true
},
"repository": {
"type": "git",
"url": "https://github.com/adobe-extension-tools/adobe-ide.git"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"watch:extendscript": "webpack --config extendscript.config.js --watch",
"watch:cep": "webpack-dev-server --config cep.config.js",
"start": "export IS_DEV=1 && npm-run-all --parallel watch:**",
"build:extendscript": "webpack --config extendscript.config.js --display verbose",
"build:jsxbin": "node ./vendor/exportToJSX.js -n ./dist/extendscript.js || true",
"build:cep": "webpack --config cep.config.js --display verbose && rm dist/extendscript.js",
"build": "npm-run-all --serial build:**",
"installer:package": "cep-packager ./dist",
"installer:notarize": "node scripts/notarize.js",
"installer": "npm-run-all --serial build installer:**"
},
"dependencies": {
"fs-extra": "^6.0.1"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/node": "^10.12.0",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"cep-bundler-webpack": "0.0.28",
"cep-interface": "^0.4.2",
"cep-packager": "github:adobe-extension-tools/cep-packager#catalina",
"console-feed": "^2.8.6",
"create-zxp": "^0.1.0",
"extendscript-es5-shim-ts": "0.0.1",
"gh-release": "^3.5.0",
"monaco-editor": "^0.16.2",
"monaco-editor-webpack-plugin": "^1.7.0",
"npm-run-all": "^4.1.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"rimraf": "^2.6.2",
"types-for-adobe": "github:pravdomil/types-for-adobe",
"typescript": "^3.4.1",
"write-file-webpack-plugin": "^4.5.0"
}
}