forked from craigbuckler/esbuild-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 900 Bytes
/
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
{
"name": "esbuild-demo",
"version": "1.0.0",
"description": "Demonstration CSS and JavaScript build system using esbuild",
"type": "module",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./build",
"init": "npm run clean && mkdir ./build && cp ./src/html/* ./build/ && cp -r ./src/images ./build",
"bundle": "npm run init && node ./esbuild.config.js",
"build": "npm run bundle -- production",
"start": "npm run bundle -- development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/craigbuckler/esbuild-demo.git"
},
"keywords": [
"esbuild",
"bundler",
"build"
],
"author": "Craig Buckler",
"license": "MIT",
"bugs": {
"url": "https://github.com/craigbuckler/esbuild-demo/issues"
},
"homepage": "https://github.com/craigbuckler/esbuild-demo#readme",
"devDependencies": {
"esbuild": "0.18.16"
}
}