-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 1.2 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
{
"name": "xd-plugin-boilerplate",
"version": "0.0.1",
"description": "A simple plugin, built with the xd-webpack-starter-template package",
"private": true,
"scripts": {
"start": "npm run debug:watch",
"test": "jest --coverage",
"build": "npm run compile && xdpm package dist",
"compile": "webpack --config webpack.config.js --mode production",
"debug:install": "webpack --config webpack.config.js --mode development && xdpm install dist -o",
"debug:watch": "xdpm watch dist | webpack --config webpack.config.js --mode development --watch",
"debug:watch-prerelease": "xdpm watch dist -w p | webpack --config webpack.config.js --mode development --watch",
"lint": "eslint src/**/*.js --ignore-pattern node_modules/",
"stats": "sloc src",
"docs": "jsdoc -r src -d docs"
},
"dependencies": {
"xd-storage-helper": "^1.2.3"
},
"devDependencies": {
"@adobe/xdpm": "^4.1.1",
"@types/adobe-xd": "AdobeXD/typings",
"eslint": "^8.33.0",
"jest": "^29.4.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"sloc": "^0.2.1",
"jsdoc": "^4.0.0"
},
"keywords": [
"adobe",
"xd"
],
"author": "Pablo Klaschka",
"license": "MIT"
}