aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-plugin-yaml/package.json
blob: b9f79395d0a6b061cdb996693b1a38a63710179e (plain) (blame)
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
{
  "name": "bun-plugin-yaml",
  "version": "0.0.1",
  "module": "index.ts",
  "type": "module",
  "types": "index.ts",
  "exports": {
    ".": {
      "import": "./index.ts",
      "require": "./index.ts",
      "default": "./index.js",
      "types": "./modules.d.ts"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "index.ts",
    "tsconfig.json",
    "package.json",
    "modules.d.ts"
  ],
  "devDependencies": {
    "@types/js-yaml": "^4.0.5",
    "bun-types": "canary"
  },
  "dependencies": {
    "js-yaml": "^4.1.0"
  }
}