-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
35 lines (34 loc) · 1.13 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": "dock-spawn-ts",
"version": "3.13.1",
"description": "DockSpawn Typescript Version",
"license": "MIT",
"author": "jochen.kuehner@gmx.de",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"start": "http-server",
"prepublishOnly": "npm run tsc && npm run bundle && npm run bundle2",
"bundle": "esbuild ./lib/js/index.js --format=esm --minify --platform=neutral --bundle --outfile=./lib/js/index-min.js",
"bundle2": "esbuild ./lib/js/index-webcomponent.js --format=esm --loader:.css=copy --minify --platform=neutral --bundle --outfile=./lib/js/index-webcomponent-min.js"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@types/node": "^22.14.1",
"esbuild": "^0.25.10",
"http-server": "^14.1.1",
"typescript": "^5.8.3",
"uglify-js": "^3.19.3",
"webpack": "^5.99.5",
"webpack-cli": "^6.0.1"
},
"type": "module",
"main": "./lib/js/index-webcomponent.js",
"files": [
"lib/**/*",
"src/**/*"
],
"homepage": "https://github.com/node-projects/dock-spawn-ts"
}