-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.56 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
{
"name": "laragram-vite-plugin",
"version": "0.1.0",
"description": "LaraGram plugin for Vite.",
"keywords": [
"laragram",
"vite",
"vite-plugin"
],
"homepage": "https://github.com/laraxgram/vite-plugin",
"repository": {
"type": "git",
"url": "https://github.com/laraxgram/vite-plugin"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./luna-helpers": {
"types": "./luna-helpers/index.d.ts",
"default": "./luna-helpers/index.js"
},
"./fonts": {
"types": "./dist/fonts/index.d.ts",
"default": "./dist/fonts/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"/dist",
"/luna-helpers"
],
"bin": {
"clean-orphaned-assets": "bin/clean.js"
},
"scripts": {
"build": "npm run build-plugin && npm run build-fonts && npm run build-luna-helpers",
"build-plugin": "rm -rf dist && npm run build-plugin-types && npm run build-plugin-esm && cp src/dev-server-index.html dist/",
"build-plugin-types": "tsc --emitDeclarationOnly",
"build-plugin-esm": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --external:vite --external:vite-plugin-full-reload --external:picocolors --external:tinyglobby --external:fontaine",
"build-fonts": "esbuild src/fonts/index.ts --bundle --platform=node --format=esm --outfile=dist/fonts/index.js",
"build-luna-helpers": "rm -rf luna-helpers && tsc --project tsconfig.luna-helpers.json",
"lint": "eslint --ext .ts ./src"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.1",
"@types/node": "^20.19.0 || >=22.12.0",
"@types/picomatch": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"esbuild": "0.28.1",
"eslint": "^9.0.0",
"globals": "^16.3.0",
"typescript": "^5.0.0",
"vite": "^8.0.0",
"vitest": "^3.0.0"
},
"peerDependencies": {
"vite": "^8.0.0",
"fontaine": "^0.8.0"
},
"peerDependenciesMeta": {
"fontaine": {
"optional": true
}
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"dependencies": {
"picocolors": "^1.0.0",
"tinyglobby": "^0.2.12",
"vite-plugin-full-reload": "^1.1.0"
}
}