-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
80 lines (80 loc) · 2.09 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "unimport",
"type": "module",
"version": "4.0.0",
"packageManager": "[email protected]",
"description": "Unified utils for auto importing APIs in modules",
"license": "MIT",
"repository": "unjs/unimport",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./unplugin": {
"import": "./dist/unplugin.mjs",
"require": "./dist/unplugin.cjs"
},
"./addons": {
"import": "./dist/addons.mjs",
"require": "./dist/addons.cjs"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"engines": {
"node": ">=18.20.6"
},
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint .",
"prepack": "unbuild",
"play": "pnpm -C playground run dev",
"play:build": "pnpm -C playground run build",
"typecheck": "vue-tsc --noEmit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm run test --run && bumpp -x \"pnpm run changelog\" --all && pnpm publish",
"test": "vitest --coverage"
},
"dependencies": {
"@rollup/pluginutils": "catalog:",
"acorn": "catalog:",
"escape-string-regexp": "catalog:",
"estree-walker": "catalog:",
"fast-glob": "catalog:",
"local-pkg": "catalog:",
"magic-string": "catalog:",
"mlly": "catalog:",
"pathe": "catalog:",
"picomatch": "catalog:",
"pkg-types": "catalog:",
"scule": "catalog:",
"strip-literal": "catalog:",
"unplugin": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@types/estree": "catalog:",
"@types/node": "catalog:",
"@types/picomatch": "catalog:",
"@vitest/coverage-v8": "catalog:",
"bumpp": "catalog:",
"conventional-changelog-cli": "catalog:",
"eslint": "catalog:",
"h3": "catalog:",
"jquery": "catalog:",
"lit": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:"
}
}