-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "vite-plugin-entrypoints",
"description": "Vite plugin to generate additional entry points for files matching glob patterns",
"version": "2.0.0",
"keywords": [
"vite",
"plugin",
"library",
"code-splitting",
"tree-shaking"
],
"license": "MIT",
"repository": "github:georgwittberger/vite-plugin-entrypoints",
"bugs": {
"url": "https://github.com/georgwittberger/vite-plugin-entrypoints/issues"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"scripts": {
"check": "tsc",
"build": "tsup src/index.ts --format esm,cjs --sourcemap --dts",
"publish": "changeset publish",
"test:build": "vite build tests"
},
"dependencies": {
"glob": "^11.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.17.3",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.1"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
}
}