File size: 1,320 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  "name": "@vitest/snapshot",
  "type": "module",
  "version": "1.6.0",
  "description": "Vitest snapshot manager",
  "license": "MIT",
  "funding": "https://opencollective.com/vitest",
  "homepage": "https://github.com/vitest-dev/vitest/tree/main/packages/snapshot#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vitest-dev/vitest.git",
    "directory": "packages/snapshot"
  },
  "bugs": {
    "url": "https://github.com/vitest-dev/vitest/issues"
  },
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./environment": {
      "types": "./dist/environment.d.ts",
      "default": "./dist/environment.js"
    },
    "./manager": {
      "types": "./dist/manager.d.ts",
      "default": "./dist/manager.js"
    },
    "./*": "./*"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "*.d.ts",
    "dist"
  ],
  "dependencies": {
    "magic-string": "^0.30.5",
    "pathe": "^1.1.1",
    "pretty-format": "^29.7.0"
  },
  "devDependencies": {
    "@types/natural-compare": "^1.4.3",
    "natural-compare": "^1.4.0",
    "@vitest/utils": "1.6.0"
  },
  "scripts": {
    "build": "rimraf dist && rollup -c",
    "dev": "rollup -c --watch"
  }
}