-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "illustrator-quote-plugin",
"version": "2.0.0",
"description": "Adobe Illustrator CEP 12 plugin for material annotation and pricing - supports Illustrator 2025+",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:cep": "yarn build && yarn prepare-cep",
"prepare-cep": "cp -r CSXS jsx lib dist/ && cp index-cep.html dist/index.html && cp .debug dist/",
"copy-files": "cp -r CSXS jsx lib dist/ && cp index-cep.html dist/index.html",
"diagnose": "node diagnose.js",
"debug": "python3 -m http.server 8080",
"lint": "eslint .",
"preview": "vite preview",
"package": "yarn build:cep && yarn create-zxp",
"create-zxp": "node scripts/simple-package.cjs",
"install-debug": "yarn build:cep && yarn copy-to-extensions",
"copy-to-extensions": "node scripts/install-debug.cjs",
"release": "yarn build:cep && yarn create-zxp"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"zxp-sign-cmd": "^2.0.0"
},
"keywords": [
"adobe",
"illustrator",
"cep",
"cep12",
"plugin",
"extension",
"material",
"annotation",
"pricing",
"illustrator-2025"
],
"author": "Illustrator Annotation Plugin Team",
"license": "MIT",
"engines": {
"node": ">=17.7.1"
},
"cep": {
"version": "12.0",
"chromium": "99",
"nodejs": "17.7.1",
"supportedApps": [
{
"name": "Illustrator",
"version": "29.0+",
"code": "ILST"
}
]
}
}