|
| 1 | +{ |
| 2 | + "name": "interactive-vignettes", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "A small framework built on top of p5js for making little interactive scenes. This framework is a part of the \"Creative Coding projects\" youtube channel.", |
| 5 | + "homepage": "https://www.youtube.com/channel/UCQJBw4IgWV9Tp3CNgT5YtwA", |
| 6 | + "repository": { |
| 7 | + "type" : "git", |
| 8 | + "url" : "https://github.com/CreativeCodingProjects/interactive-vignettes.git" |
| 9 | + }, |
| 10 | + "main": "index.js", |
| 11 | + "keywords": [ |
| 12 | + "p5js", |
| 13 | + "interactive", |
| 14 | + "creative coding" |
| 15 | + ], |
| 16 | + "author": "Ben Jack", |
| 17 | + "license": "ISC", |
| 18 | + "devDependencies": { |
| 19 | + "@babel/cli": "^7.0.0", |
| 20 | + "@babel/core": "^7.0.1", |
| 21 | + "@babel/preset-env": "^7.0.0", |
| 22 | + "babel-loader": "^8.0.0-beta.6", |
| 23 | + "cpx": "^1.5.0", |
| 24 | + "mkdirp": "^0.5.1", |
| 25 | + "npm-run-all": "^4.1.3", |
| 26 | + "webpack": "^4.18.0", |
| 27 | + "webpack-cli": "^3.1.0", |
| 28 | + "webpack-dev-server": "^3.1.8" |
| 29 | + }, |
| 30 | + "scripts": { |
| 31 | + "dev": "webpack-dev-server --config webpack.config.dev.js --mode=development -d", |
| 32 | + "build": "run-p prepare copy_p5 copy_ccapture copy_sample_code create_assets_folder", |
| 33 | + "prepare": "webpack --mode=production", |
| 34 | + "copy_p5": "cpx ./node_modules/p5/lib/p5.min.js ./build/libraries/", |
| 35 | + "copy_ccapture": "cpx ./node_modules/ccapture.js/build/CCapture.all.min.js ./build/libraries/ && cpx ./node_modules/ccapture.js/src/gif.worker.js ./build/libraries/", |
| 36 | + "copy_sample_code": "cpx ./sample_code/index.html ./build/ && cpx ./sample_code/my_vignettes.js ./build/", |
| 37 | + "create_assets_folder": "mkdirp ./build/assets" |
| 38 | + }, |
| 39 | + "dependencies": { |
| 40 | + "@babel/polyfill": "^7.0.0", |
| 41 | + "babel-preset-env": "^1.7.0", |
| 42 | + "ccapture.js": "^1.1.0", |
| 43 | + "p5": "^0.7.2" |
| 44 | + } |
| 45 | +} |
0 commit comments