package.json 954 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "scule",
  3. "version": "0.2.1",
  4. "description": "",
  5. "repository": "nuxt-contrib/scule",
  6. "license": "MIT",
  7. "sideEffects": false,
  8. "exports": {
  9. ".": {
  10. "require": "./dist/index.js",
  11. "import": "./dist/index.mjs"
  12. },
  13. "./*": "./*"
  14. },
  15. "main": "./dist/index.js",
  16. "module": "./dist/index.mjs",
  17. "types": "./dist/index.d.ts",
  18. "files": [
  19. "dist"
  20. ],
  21. "scripts": {
  22. "build": "siroc build",
  23. "lint": "eslint --ext .ts .",
  24. "prepublishOnly": "yarn build",
  25. "release": "yarn test && standard-version && git push --follow-tags && npm publish",
  26. "test": "yarn lint && jest"
  27. },
  28. "devDependencies": {
  29. "@nuxtjs/eslint-config-typescript": "latest",
  30. "@types/flat": "latest",
  31. "@types/jest": "latest",
  32. "@types/node": "latest",
  33. "eslint": "latest",
  34. "jest": "latest",
  35. "siroc": "latest",
  36. "standard-version": "latest",
  37. "ts-jest": "latest",
  38. "typescript": "latest"
  39. }
  40. }