BBCode <-> Mobiledoc converter
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.

42 lines
806 B

  1. {
  2. "version": "0.1.0",
  3. "license": "MIT",
  4. "main": "dist/index.js",
  5. "typings": "dist/index.d.ts",
  6. "files": [
  7. "dist",
  8. "src"
  9. ],
  10. "engines": {
  11. "node": ">=10"
  12. },
  13. "scripts": {
  14. "start": "tsdx watch",
  15. "build": "tsdx build",
  16. "test": "tsdx test",
  17. "lint": "tsdx lint",
  18. "prepare": "tsdx build"
  19. },
  20. "peerDependencies": {},
  21. "husky": {
  22. "hooks": {
  23. "pre-commit": "tsdx lint"
  24. }
  25. },
  26. "prettier": {
  27. "printWidth": 80,
  28. "semi": true,
  29. "singleQuote": true,
  30. "trailingComma": "es5"
  31. },
  32. "name": "bbcode-mobiledoc",
  33. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  34. "module": "dist/bbcode-mobiledoc.esm.js",
  35. "devDependencies": {
  36. "husky": "^4.3.6",
  37. "tsdx": "^0.14.1",
  38. "tslib": "^2.0.3",
  39. "typescript": "^4.1.3"
  40. }
  41. }