package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "create-stdf",
  3. "version": "0.1.2",
  4. "description": "A CLI for creating new STDF projects",
  5. "bin": {
  6. "create-stdf": "index.js"
  7. },
  8. "scripts": {
  9. "build": "rollup -c",
  10. "update": "node scripts/update",
  11. "test": "echo \"Error: no test specified\" && exit 1"
  12. },
  13. "files": [
  14. "dist/**",
  15. "templates/**"
  16. ],
  17. "engines": {
  18. "node": ">=14.14"
  19. },
  20. "dependencies": {
  21. "@clack/prompts": "^0.10.0",
  22. "fs-extra": "^11.3.0",
  23. "kleur": "^4.1.5",
  24. "minimist": "^1.2.8"
  25. },
  26. "devDependencies": {
  27. "@rollup/plugin-terser": "^0.4.4",
  28. "rollup": "^4.39.0"
  29. },
  30. "keywords": [
  31. "svelte",
  32. "sveltekit",
  33. "tailwind",
  34. "unocss",
  35. "typescript",
  36. "stdf",
  37. "cli",
  38. "mobile",
  39. "vite"
  40. ],
  41. "author": "any-tdf",
  42. "funding": "https://stdf.design?fund",
  43. "license": "MIT",
  44. "type": "module",
  45. "homepage": "https://github.com/any-tdf/stdf/blob/main/packages/create-stdf/README.md",
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/any-tdf/stdf"
  49. },
  50. "bugs": {
  51. "url": "https://github.com/any-tdf/stdf/issues?q=is:issue+is:open+create"
  52. }
  53. }