package.json 692 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "excel2x",
  3. "bin": {
  4. "excel2x": "./dist/Main.js"
  5. },
  6. "version": "1.0.17",
  7. "description": "配置转换工具",
  8. "main": "index.js",
  9. "scripts": {
  10. "build": "tsc -p ./tsconfig.json",
  11. "start": "node ./dist/Main.js",
  12. "test": "node ./dist/Main.js -i D:/b22_client/config -o D:/b22_client/config -t ts_alone"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git://43.139.94.120:3000/lanyunfei/excel2x"
  17. },
  18. "keywords": [],
  19. "author": "goodkof",
  20. "license": "MIT",
  21. "dependencies": {
  22. "@types/node": "^13.11.1",
  23. "@types/yargs": "^15.0.4",
  24. "xlsx": "^0.15.6",
  25. "yargs": "^15.3.1"
  26. },
  27. "devDependencies": {
  28. "typescript": "^5.4.3"
  29. }
  30. }