-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 961 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
{
"name": "munger",
"version": "0.1.0",
"description": "probably should have just learned sed",
"type": "module",
"main": "index.js",
"scripts": {
"test": "npx tsc && node test.js && node filetest.js",
"build": " npx tsc && npx esbuild --bundle --outfile=ui/bundle.js ui/ui.js && npx tsc --build --clean",
"build:prod": " npx tsc && npx esbuild --bundle --minify --outfile=ui/bundle.js ui/ui.js && node build/embed.js ui/munger.html dist/index.html && npx tsc --build --clean",
"watch": "start npx tsc --watch && start npx esbuild --bundle --watch --outfile=ui/bundle.js ui/ui.js && start ui/munger.html"
},
"author": "Tom Theisen",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.10",
"esbuild": "^0.14.0",
"typescript": "^4.5.2"
},
"dependencies": {
"redactio": "^1.0.4"
}
}