DNA transcription and translation in wasm with rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

Bump json5, copy-webpack-plugin, webpack and webpack-cli in /www Removes [json5](https://github.com/json5/json5). It's no longer used after updating ancestor dependencies [json5](https://github.com/json5/json5), [copy-webpack-plugin](https://github.com/webpack-contrib/copy-webpack-plugin), [webpack](https://github.com/webpack/webpack) and [webpack-cli](https://github.com/webpack/webpack-cli). These dependencies need to be updated together. Removes `json5` Updates `copy-webpack-plugin` from 5.1.2 to 11.0.0 - [Release notes](https://github.com/webpack-contrib/copy-webpack-plugin/releases) - [Changelog](https://github.com/webpack-contrib/copy-webpack-plugin/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v5.1.2...v11.0.0) Updates `webpack` from 4.46.0 to 5.75.0 - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.46.0...v5.75.0) Updates `webpack-cli` from 3.3.12 to 5.0.1 - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.12...webpack-cli@5.0.1) --- updated-dependencies: - dependency-name: json5 dependency-type: indirect - dependency-name: copy-webpack-plugin dependency-type: direct:development - dependency-name: webpack dependency-type: direct:development - dependency-name: webpack-cli dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
3 years ago
Bump json5, copy-webpack-plugin, webpack and webpack-cli in /www Removes [json5](https://github.com/json5/json5). It's no longer used after updating ancestor dependencies [json5](https://github.com/json5/json5), [copy-webpack-plugin](https://github.com/webpack-contrib/copy-webpack-plugin), [webpack](https://github.com/webpack/webpack) and [webpack-cli](https://github.com/webpack/webpack-cli). These dependencies need to be updated together. Removes `json5` Updates `copy-webpack-plugin` from 5.1.2 to 11.0.0 - [Release notes](https://github.com/webpack-contrib/copy-webpack-plugin/releases) - [Changelog](https://github.com/webpack-contrib/copy-webpack-plugin/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v5.1.2...v11.0.0) Updates `webpack` from 4.46.0 to 5.75.0 - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.46.0...v5.75.0) Updates `webpack-cli` from 3.3.12 to 5.0.1 - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.12...webpack-cli@5.0.1) --- updated-dependencies: - dependency-name: json5 dependency-type: indirect - dependency-name: copy-webpack-plugin dependency-type: direct:development - dependency-name: webpack dependency-type: direct:development - dependency-name: webpack-cli dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
3 years ago
  1. {
  2. "name": "create-wasm-app",
  3. "version": "0.1.0",
  4. "description": "create an app to consume rust-generated wasm packages",
  5. "main": "index.js",
  6. "bin": {
  7. "create-wasm-app": ".bin/create-wasm-app.js"
  8. },
  9. "scripts": {
  10. "build": "webpack --config webpack.config.js",
  11. "start": "webpack-dev-server --host 0.0.0.0"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/rustwasm/create-wasm-app.git"
  16. },
  17. "keywords": [
  18. "webassembly",
  19. "wasm",
  20. "rust",
  21. "webpack"
  22. ],
  23. "author": "Ashley Williams <ashley666ashley@gmail.com>",
  24. "license": "(MIT OR Apache-2.0)",
  25. "bugs": {
  26. "url": "https://github.com/rustwasm/create-wasm-app/issues"
  27. },
  28. "homepage": "https://github.com/rustwasm/create-wasm-app#readme",
  29. "dependencies": {
  30. "wasm-dna-transcription-translation": "file:../pkg"
  31. },
  32. "devDependencies": {
  33. "copy-webpack-plugin": "^11.0.0",
  34. "hello-wasm-pack": "^0.1.0",
  35. "webpack": "^5.75.0",
  36. "webpack-cli": "^5.0.1",
  37. "webpack-dev-server": "^3.1.5"
  38. }
  39. }