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