forked from unjs/unimport
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 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
69
70
71
72
{
"name": "unimport",
"type": "module",
"version": "6.0.2",
"packageManager": "pnpm@10.32.1",
"description": "Unified utils for auto importing APIs in modules",
"license": "MIT",
"repository": "unjs/unimport",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./unplugin": "./dist/unplugin.mjs",
"./addons": "./dist/addons.mjs",
"./*": "./*"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"*.d.ts",
"dist"
],
"engines": {
"node": ">=18.12.0"
},
"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",
"release": "pnpm run test --run && bumpp",
"test": "vitest --coverage"
},
"dependencies": {
"acorn": "catalog:prod",
"escape-string-regexp": "catalog:prod",
"estree-walker": "catalog:prod",
"local-pkg": "catalog:prod",
"magic-string": "catalog:prod",
"mlly": "catalog:prod",
"pathe": "catalog:prod",
"picomatch": "catalog:prod",
"pkg-types": "catalog:prod",
"scule": "catalog:prod",
"strip-literal": "catalog:prod",
"tinyglobby": "catalog:prod",
"unplugin": "catalog:prod",
"unplugin-utils": "catalog:prod"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:dev",
"@types/estree": "catalog:dev",
"@types/node": "catalog:dev",
"@types/picomatch": "catalog:dev",
"@vitest/coverage-v8": "catalog:dev",
"bumpp": "catalog:dev",
"eslint": "catalog:dev",
"h3": "catalog:test",
"jquery": "catalog:test",
"lit": "catalog:test",
"typescript": "catalog:dev",
"unbuild": "catalog:dev",
"vitest": "catalog:test",
"vue-tsc": "catalog:dev"
},
"resolutions": {
"chokidar": "catalog:dev"
}
}