-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "@fabithub/vite-plugin-ci4",
"version": "1.2.0",
"description": "Vite Plugin for CodeIgniter 4 integration.",
"keywords": ["vite", "ci4", "codeigniter", "inertia", "plugin"],
"homepage": "https://github.com/fab-it-hub/vite-plugin-ci4",
"repository": {
"type": "git",
"url": "https://github.com/fab-it-hub/vite-plugin-ci4"
},
"license": "MIT",
"author": {
"name": "Krishna Gujjjar",
"email": "[email protected]",
"url": "https://fabithub.com"
},
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"bun": "./dist/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"files": ["dist"],
"scripts": {
"lint": "eslint --ext .ts ./src ./tests",
"prebuild": "rm -rf dist",
"build": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"postbuild": "bun run build.config.ts"
},
"peerDependencies": {
"vite": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@types/bun": "^1.1.4",
"@types/minify": "^9.1.4",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"minify": "^11.2.0",
"typescript": "^5.4.5",
"vite": "^5.2.13"
},
"dependencies": {
"picocolors": "^1.0.1",
"semver": "^7.6.2",
"vite-plugin-full-reload": "^1.1.0"
},
"trustedDependencies": ["@biomejs/biome", "esbuild"]
}