-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.11 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
36
37
38
39
40
41
42
43
44
{
"name": "cep-symlink",
"version": "1.0.1",
"type": "module",
"types": "./types/index.d.ts",
"description": "A simple command-line tool to create, remove or manage a symlink of your extension in the Adobe CEP extensions folder. Lets you develop your extension in a folder of your choice, as well as test your build before publishing.",
"keywords": [
"Adobe, Extensions, Symlink, CEP, ZXP"
],
"license": "MIT",
"bin": {
"cep-symlink": "lib/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/GoodBoyNinja/cep-symlink"
},
"author": "",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/cep-symlink.es.js",
"require": "./dist/cep-symlink.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"path-browserify": "^1.0.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-polyfill-node": "^0.12.0",
"vite": "^4.1.0",
"vite-plugin-node-polyfills": "^0.7.0"
},
"dependencies": {
"inquirer": "^9.2.2",
"is-elevated": "^4.0.0"
}
}