package.json 515 B

12345678910111213141516171819
  1. {
  2. "name": "qf-types",
  3. "version": "1.0.0",
  4. "description": "Global package for about interfaces, types.",
  5. "main": "./lib/cjs/index.js",
  6. "module": "./lib/esm/index.js",
  7. "types": "./lib/esm/index.d.ts",
  8. "scripts": {
  9. "build": "yarn build:esm && yarn build:cjs",
  10. "build:esm": "tsc",
  11. "build:cjs": "tsc --module commonjs --outDir lib/cjs"
  12. },
  13. "repository": "https://git.ali33.ru/s4z/qf-types.git",
  14. "author": "0xJS",
  15. "license": "MIT",
  16. "devDependencies": {
  17. "typescript": "^5.0.4"
  18. }
  19. }