-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 965 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
36
37
38
39
40
41
42
{
"name": "@kykungz/itermy",
"version": "1.0.2",
"description": "iTerm2 tabs and panes automation",
"author": "Kongpon Charanwattanakit <[email protected]>",
"homepage": "https://github.com/kykungz/itermy#readme",
"license": "ISC",
"main": "dist/index.js",
"directories": {
"dist": "dist"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kykungz/itermy.git"
},
"bugs": {
"url": "https://github.com/kykungz/itermy/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"dev": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"release": "yarn build && np"
},
"dependencies": {
"execa": "^4.0.2",
"shell-env": "^3.0.0"
},
"devDependencies": {
"@types/node": "^13.11.1",
"nodemon": "^2.0.2",
"np": "^6.2.4",
"ts-node": "^8.6.2",
"typescript": "^3.9.2"
}
}