-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.62 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
{
"name": "@kanamone/vite-plugin-dynamic-import-with-import-map",
"version": "0.1.2",
"description": "Import some module via importmap",
"repository": {
"type": "git",
"url": "https://github.com/kanamone/vite-plugin-dynamic-import-with-import-map"
},
"exports": {
".": {
"import": "./dist/index.js",
"type": "./dist/index.d.ts"
}
},
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"scripts": {
"build": "tsup src/index.ts",
"compile": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write src/*",
"lint": "eslint src/*",
"release": "changeset publish"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"vite"
],
"author": "himanoa <[email protected]>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "2.27.1",
"@types/node": "20.11.25",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@vitest/coverage-v8": "1.3.1",
"changeset": "0.2.6",
"esbuild": "0.20.2",
"eslint": "8.57.0",
"prettier": "3.2.5",
"publint": "0.2.7",
"react": "18.2.0",
"tsup": "8.0.2",
"typescript": "5.4.2",
"typescript-eslint": "7.2.0",
"vite": "5.2.8",
"vitest": "1.3.1"
},
"files": [
"dist/*",
"README.md"
],
"dependencies": {
"esbuild-plugin-named-exports": "3.0.7",
"option-t": "39.0.2",
"resolve-package-path": "4.0.3"
},
"peerDependencies": {
"esbuild": "^0.0.0",
"vite": "^5.0.0"
}
}