-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.72 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "vitest-package-exports",
"type": "module",
"version": "1.2.0",
"packageManager": "pnpm@10.28.2",
"description": "A Vitest util to get all exported APIs of a package and prevent unintended breaking changes",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/vitest-package-exports#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/vitest-package-exports.git"
},
"bugs": "https://github.com/antfu/vitest-package-exports/issues",
"keywords": [
"vitest",
"snapshot"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc",
"prepare": "simple-git-hooks"
},
"dependencies": {
"find-up-simple": "^1.0.1",
"pathe": "^2.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@antfu/ni": "^28.2.0",
"@antfu/utils": "^9.3.0",
"@types/node": "^25.2.0",
"bumpp": "^10.4.0",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"pnpm": "^10.28.2",
"rollup": "^4.57.1",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.20.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}