-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 881 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
{
"name": "npm-package-starter",
"version": "0.1.0",
"description": "npm package starter for typescript",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "run-p build:*",
"build:esbuild": "node build.js",
"build:types": "tsc --declaration --emitDeclarationOnly --declarationDir './dist'"
},
"keywords": [],
"devDependencies": {
"esbuild": "^0.15.14",
"npm-run-all": "^4.1.5",
"typescript": "^4.8.4"
},
"author": "hanetsuki<[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tsuki-lab/npm-package-starter.git"
},
"bugs": {
"url": "https://github.com/tsuki-lab/npm-package-starter/issues"
},
"homepage": "https://github.com/tsuki-lab/npm-package-starter#readme"
}