package.json 971 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@vue/devtools-api",
  3. "version": "6.5.0",
  4. "description": "Interact with the Vue devtools from the page",
  5. "main": "lib/cjs/index.js",
  6. "browser": "lib/esm/index.js",
  7. "module": "lib/esm/index.js",
  8. "types": "lib/esm/index.d.ts",
  9. "sideEffects": false,
  10. "author": {
  11. "name": "Guillaume Chau"
  12. },
  13. "files": [
  14. "lib/esm",
  15. "lib/cjs"
  16. ],
  17. "license": "MIT",
  18. "repository": {
  19. "url": "https://github.com/vuejs/vue-devtools.git",
  20. "type": "git",
  21. "directory": "packages/api"
  22. },
  23. "publishConfig": {
  24. "access": "public"
  25. },
  26. "scripts": {
  27. "build": "rimraf lib && yarn build:esm && yarn build:cjs",
  28. "build:esm": "tsc --module es2015 --outDir lib/esm -d",
  29. "build:cjs": "tsc --module commonjs --outDir lib/cjs",
  30. "build:watch": "yarn tsc --module es2015 --outDir lib/esm -d -w --sourceMap"
  31. },
  32. "devDependencies": {
  33. "@types/node": "^13.9.1",
  34. "@types/webpack-env": "^1.15.1",
  35. "typescript": "^4.5.2"
  36. }
  37. }