You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
973 B

4 months ago
  1. {
  2. "name": "@vue/devtools-api",
  3. "version": "6.6.3",
  4. "description": "Interact with the Vue devtools from the page",
  5. "author": {
  6. "name": "Guillaume Chau"
  7. },
  8. "license": "MIT",
  9. "repository": {
  10. "url": "https://github.com/vuejs/vue-devtools.git",
  11. "type": "git",
  12. "directory": "packages/api"
  13. },
  14. "sideEffects": false,
  15. "main": "lib/cjs/index.js",
  16. "browser": "lib/esm/index.js",
  17. "module": "lib/esm/index.js",
  18. "types": "lib/esm/index.d.ts",
  19. "files": [
  20. "lib/cjs",
  21. "lib/esm"
  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": "^20.11.16",
  34. "@types/webpack-env": "^1.15.1",
  35. "typescript": "^5.3.3"
  36. }
  37. }