-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.1 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
{
"name": "aoctimer",
"version": "3.1.2",
"description": "AoC TIMER - compare your AoC solutions with others",
"repository": "https://github.com/caderek/aoctimer",
"homepage": "https://github.com/caderek/aoctimer",
"keywords": [
"aoc",
"advent of code",
"timer",
"benchmark"
],
"author": "Maciej Caderek",
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"start": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf bin; npm run transpile; npm run build:win64; npm run build:macos; npm run build:linux64; npm run build:zip",
"transpile": "tsc",
"build:win64": "pkg -c package.json -t node16-win-x64 --out-path bin/windows64 build/index.js",
"build:macos": "pkg -c package.json -t node16-macos-x64 --out-path bin/macos build/index.js",
"build:linux64": "pkg -c package.json -t node16-linux-x64 --out-path bin/linux64 build/index.js",
"build:zip": "node scripts/zip-binaries.js"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.10",
"pkg": "^5.8.0",
"typescript": "^4.9.3"
}
}