-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
64
65
{
"name": "unplugin-purge-polyfills",
"type": "module",
"version": "0.0.7",
"packageManager": "[email protected]",
"description": "A tiny plugin to replace package imports with better native code.",
"license": "MIT",
"repository": "danielroe/unplugin-purge-polyfills",
"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 && npm publish",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:types": "tsc --noEmit"
},
"dependencies": {
"defu": "^6.1.4",
"magic-string": "^0.30.11",
"mlly": "^1.7.1",
"unplugin": "^2.0.0",
"unplugin-utils": "^0.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "latest",
"@types/node": "22.10.5",
"@vitest/coverage-v8": "latest",
"bumpp": "10.0.1",
"eslint": "latest",
"lint-staged": "latest",
"module-replacements": "2.1.0",
"rollup": "4.29.2",
"simple-git-hooks": "latest",
"typescript": "latest",
"unbuild": "latest",
"vite": "6.0.11",
"vitest": "latest"
},
"resolutions": {
"rollup": "4.29.2",
"unplugin-purge-polyfills": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}