-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.94 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vite-import-maps",
"version": "0.2.6",
"description": "A Vite plugin that manages import maps for shared dependencies in your Vite applications.",
"main": "./dist/index.mjs",
"module ": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "pnpm --filter vite-import-maps-integration test",
"build": "tsdown",
"format": "prettier --write .",
"publint": "pnpm dlx publint",
"ci:publish": "changeset publish",
"ci:version": "changeset version"
},
"keywords": [
"vite",
"vite-plugin",
"import-maps",
"mfe",
"import maps",
"microfrontend",
"plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/riccardoperra/vite-import-maps.git"
},
"homepage": "https://github.com/riccardoperra/vite-import-maps",
"author": {
"name": "Riccardo Perra",
"email": "riccardo.perra@icloud.com",
"url": "https://github.com/riccardoperra"
},
"license": "MIT",
"packageManager": "pnpm@10.9.0",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@tanstack/eslint-config": "^0.4.0",
"@types/node": "^25.5.0",
"cjs-module-lexer": "^2.2.0",
"eslint": "^10.2.0",
"mlly": "^1.8.2",
"prettier": "^3.8.2",
"rollup": "^4.60.1",
"tsdown": "^0.21.7",
"typescript": "^6.0.0",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"peerDependencies": {
"rolldown": ">=1.0.0-rc.0",
"rollup": ">=4.0.0",
"vite": ">=6.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
},
"rolldown": {
"optional": true
},
"rollup": {
"optional": true
}
},
"compatiblePackages": {
"schemaVersion": 1,
"vite": {
"type": "compatible",
"versions": ">=6.0.0"
}
}
}