-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "tga-for-web",
"version": "1.0.0",
"description": "A library for reading TGA files in the browser",
"main": "dist/index.js",
"license": "GPL-3.0-or-later",
"author": {
"name": "Mehmet Baker",
"email": "mehmet@mehmetbaker.dev",
"url": "https://github.com/mehmetb"
},
"keywords": [
"tga",
"truevision",
"targa",
"browser",
"web",
"canvas"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mehmetb/tga-for-web.git"
},
"bugs": {
"url": "https://github.com/mehmetb/tga-for-web/issues"
},
"homepage": "https://github.com/mehmetb/tga-for-web#readme",
"files": [
"dist",
"COPYING"
],
"scripts": {
"test": "jest .",
"build-for-npm": "tsc",
"build-live-demo": "esbuild src/www-index.ts --outdir=www/js --format=esm --bundle --target=ESNext --define:window.IS_PRODUCTION=true",
"start": "esbuild src/www-index.ts --outdir=www/js --format=esm --watch --bundle --target=ESNext --servedir=www"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"esbuild": "^0.19.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^4.3.5"
}
}