We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2674cce commit 4226ba0Copy full SHA for 4226ba0
package.json
@@ -2,14 +2,16 @@
2
"name": "my-starter-ts-npm-cli-and-lib",
3
"version": "0.1.0",
4
"description": "Typescript で CLI とライブラリの npm パッケージを作成するためのスターター。",
5
+ "license": "MIT",
6
+ "keywords": [],
7
"main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
"files": [
10
"dist"
11
],
12
"bin": {
13
"count": "./dist/main.js"
14
},
- "license": "MIT",
15
"scripts": {
16
"start": "tsc && node dist/main.js",
17
"start:watch": "nodemon --watch src --ext ts --exec ts-node src/main.ts",
@@ -32,6 +34,5 @@
32
34
"ts-jest": "^26.5.5",
33
35
"ts-node": "^9.1.1",
36
"typescript": "^4.2.4"
- },
- "keywords": []
37
+ }
38
}
0 commit comments