-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (32 loc) · 1.09 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
{
"name": "gnaparser",
"version": "1.0.1",
"description": "Parses GNA format images and outputs them as ImageData.",
"main": "./cjs/gna.js",
"bin": {
"gnaparser": "./node/index.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:app && npm run build:node",
"build:cjs": "tsc -p tsconfig.cjs.prod.json",
"build:esm": "tsc -p tsconfig.esm.prod.json",
"build:app": "tsc -p tsconfig.app.prod.json",
"build:node": "tsc -p tsconfig.node.prod.json",
"watch:cjs": "tsc -w -p tsconfig.cjs.json",
"watch:esm": "tsc -w -p tsconfig.esm.json",
"watch:app": "tsc -w -p tsconfig.app.json",
"watch:node": "tsc -w -p tsconfig.node.json",
"server": "http-server -p 3000",
"start": "concurrently \"npm run watch:esm\" \"npm run watch:cjs\" \"npm run watch:node\" \"npm run watch:app\" \"http-server -c-1 -p 3000\""
},
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.6",
"concurrently": "^6.4.0",
"typescript": "^4.4.4",
"http-server": "^14.0.0"
},
"dependencies": {
"sharp": "^0.29.3"
}
}