-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name": "p5.axidraw",
"version": "1.0.0",
"description": "Control an AxiDraw pen plotter from p5.js",
"main": "dist/p5.axidraw.js",
"repository": "[email protected]:jmpinit/p5.axidraw.git",
"author": "Owen Trueblood <[email protected]>",
"license": "MIT",
"scripts": {
"build": "node node_modules/webpack-cli/bin/cli.js --config webpack.prod.js",
"watch": "node node_modules/webpack-cli/bin/cli.js watch --config webpack.dev.js",
"docs": "node node_modules/documentation/bin/documentation.js build -f html -o docs src/index.js",
"prepublishOnly": "yarn && yarn build"
},
"files": [
"dist/"
],
"dependencies": {
"ebb-control": "^2.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.22.2",
"babel-loader": "^9.1.2",
"documentation": "^14.0.2",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1",
"webpack-merge": "^5.9.0"
}
}