-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.16 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.16 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
{
"name": "@pictogrammers/element-esbuild",
"version": "0.0.30",
"type": "module",
"description": "Element esbuild",
"homepage": "https://github.com/Pictogrammers/Element-esbuild#readme",
"bugs": {
"url": "https://github.com/Pictogrammers/Element-esbuild/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pictogrammers/Element-esbuild.git"
},
"license": "MIT",
"author": "Austin Andrews",
"main": "index.ts",
"bin": {
"element-start": "./bin/element-start.js",
"element-build": "./bin/element-build.js",
"element-publish": "./bin/element-publish.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "esbuild scripts/element-start.ts scripts/element-build.ts scripts/element-publish.ts --bundle --minify --outdir=bin --format=esm --target=esnext --platform=node --external:esbuild --banner:js=\"import { createRequire } from 'node:module'; const require = createRequire(import.meta.url);\""
},
"devDependencies": {
"@types/node": "^25.0.3",
"chokidar": "^5.0.0",
"esbuild-html-plugin": "^1.1.0",
"typescript": "^5.9.3"
},
"dependencies": {
"esbuild": "^0.27.2"
}
}