-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.62 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "utpp",
"version": "1.0.0",
"description": "Universal Text Pre-Processor",
"main": "bin/index.js",
"bin": "bin/npx.js",
"keywords": [
"utpp",
"text",
"preprocessor",
"pre-processor",
"pre-processing",
"universal",
"cli",
"file",
"macros"
],
"scripts": {
"test": "jest",
"build": "tsc",
"build:watch": "tsc -w",
"pack:release": "rm -rf dist && pkg . --compress Brotli --out-path dist --targets node18-alpine-x64,node18-linux-x64,node18-win-x64 && find 'dist' -print0 | xargs -0 -n1 -I % tar zcpf %.tar.gz % && rm -f dist.tar.gz",
"pack:lw": "pkg . --compress Brotli --out-path dist --targets node18-alpine-x64,node18-linux-x64,node18-win-x64",
"pack": "pkg . --compress Brotli --out-path dist --targets node18-alpine-x64,node18-linux-x64,node18-linux-arm64,node18-macos-x64,node18-macos-arm64,node18-win-x64",
"build:npm": "esbuild src/index.ts --bundle --minify --outfile=bin/index.js --platform=node --target=node18 --packages=external"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianschubek/utpp.git"
},
"author": "Adrian Schubek",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrianschubek/utpp/issues"
},
"homepage": "https://github.com/adrianschubek/utpp#readme",
"dependencies": {
"chalk": "^4.1.2",
"glob": "^9.3.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.0",
"@types/yargs": "^17.0.22",
"esbuild": "^0.17.11",
"jest": "^29.5.0",
"pkg": "^5.8.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9"
}
}