-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "photoshop-script-api",
"version": "1.0.4",
"description": "photoshop script api 此项目旨在实现一套完整的API,用来封装photoshop插件开发过程中,宿主提供的能力合集。",
"main": "index.jsx",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"build:watch": "webpack --mode=production --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emptykid/photoshop-script-api"
},
"author": "xiaoqiang",
"license": "ISC",
"bugs": {
"url": "https://github.com/emptykid/photoshop-script-api/issues"
},
"homepage": "https://github.com/emptykid/photoshop-script-api",
"devDependencies": {
"babel-loader": "^8.2.5",
"jsxbin-webpack-plugin": "^1.0.0",
"ps-extendscript-types": "^1.0.2",
"ts-loader": "^9.3.1",
"typescript": "^5.0.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"peerDependencies": {},
"dependencies": {
"cep-shim": "^4.5.12",
"extendscript-es5-shim": "^0.3.1"
}
}