-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 KB
/
package.json
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
{
"name": "impound",
"type": "module",
"version": "0.2.0",
"packageManager": "[email protected]",
"description": "Builder-agnostic plugin to allow restricting import patterns in certain parts of your code-base.",
"license": "MIT",
"repository": "unjs/impound",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && pnpm publish",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.2",
"mlly": "^1.7.2",
"pathe": "^2.0.0",
"unenv": "^1.10.0",
"unplugin": "^2.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "4.1.0",
"@types/node": "22.12.0",
"@vitest/coverage-v8": "3.0.4",
"bumpp": "10.0.1",
"eslint": "9.19.0",
"lint-staged": "15.4.3",
"rollup": "4.32.1",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.3",
"unbuild": "3.3.1",
"vite": "6.0.11",
"vitest": "3.0.4"
},
"resolutions": {
"impound": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}