package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@deepseek-ai/dsh-root",
  3. "version": "0.0.1",
  4. "private": true,
  5. "type": "module",
  6. "packageManager": "yarn@4.14.1",
  7. "engines": {
  8. "node": ">=24"
  9. },
  10. "workspaces": [
  11. "vendor/*",
  12. "packages/*"
  13. ],
  14. "scripts": {
  15. "build": "tsc -b tsconfig.build.json && tsx scripts/build.ts",
  16. "typecheck": "tsc -b tsconfig.build.json && tsc -p tsconfig.typecheck.json",
  17. "lint": "eslint .",
  18. "lint:fix": "eslint . --fix",
  19. "test": "vitest run",
  20. "test:coverage": "vitest run --coverage",
  21. "knip": "knip",
  22. "publint": "tsx scripts/publint-all.ts",
  23. "hygiene": "yarn knip && yarn publint && yarn constraints",
  24. "demo": "node --expose-internals --import tsx examples/echo-agent/start.ts",
  25. "postinstall": "lefthook install"
  26. },
  27. "devDependencies": {
  28. "@stylistic/eslint-plugin": "^5.10.0",
  29. "@types/node": "^25.3.5",
  30. "@vitest/coverage-v8": "^4.1.8",
  31. "@yarnpkg/types": "^4.0.1",
  32. "dumble": "^0.2.3",
  33. "eslint": "^10.4.1",
  34. "knip": "^6.16.1",
  35. "lefthook": "^2.1.9",
  36. "publint": "^0.3.21",
  37. "tsx": "^4.22.4",
  38. "typescript": "^6.0.3",
  39. "typescript-eslint": "^8.61.0",
  40. "vite-tsconfig-paths": "^6.1.1",
  41. "vitest": "^4.1.8"
  42. }
  43. }