generated from tobecci/ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1008 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
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "nodeclipboard-image",
"version": "1.1.3",
"description": "nodejs image clipboard utility for linux",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:ts": "tsc --watch",
"start:js": "nodemon ./dist/index.js",
"start:dev": "tsc && concurrently \"npm run start:ts\" \"npm run start:js\"",
"start": "tsc && node ./dist/index.js",
"start:test": "nodemon dist/index.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobecci/nodeclipboard-image.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tobecci/nodeclipboard-image/issues"
},
"homepage": "https://github.com/tobecci/nodeclipboard-image#readme",
"devDependencies": {
"concurrently": "^7.1.0",
"nodemon": "^2.0.15",
"tslint": "^6.1.3"
},
"dependencies": {
"@types/node": "^18.7.13",
"typescript": "^4.6.3"
}
}