package.json 736 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@douyinfe/semi-scss-compile",
  3. "version": "2.1.3",
  4. "description": "compile semi scss to css",
  5. "author": "[email protected]",
  6. "license": "MIT",
  7. "main": "lib/index.js",
  8. "types": "lib/index.d.ts",
  9. "bin": {
  10. "semi-build-scss": "lib/bin.js"
  11. },
  12. "files": [
  13. "lib",
  14. "src"
  15. ],
  16. "keywords": [
  17. "semi-scss-compiler",
  18. "scss"
  19. ],
  20. "scripts": {
  21. "build:lib": "rimraf lib && tsc",
  22. "prepublishOnly": "npm run build:lib"
  23. },
  24. "dependencies": {
  25. "arg": "^5.0.1",
  26. "fs-extra": "^8.1.0",
  27. "lodash": "^4.17.21",
  28. "sass": "^1.43.4"
  29. },
  30. "devDependencies": {
  31. "@types/lodash": "^4.14.176",
  32. "@types/sass": "^1.43.0",
  33. "rimraf": "^3.0.2",
  34. "typescript": "^4.4.4"
  35. }
  36. }