-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.31 KB
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
{
"name": "typescript-template",
"version": "0.0.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/",
"tsc:build": "npm run clean && concurrently \"npm:tsc:build:cjs\" \"npm:tsc:build:esm\"",
"tsc:build:cjs": "tsc --module commonjs --outDir dist/cjs",
"tsc:build:esm": "tsc --module es6 --outDir dist/esm --declaration --declarationDir dist/",
"tsc:check": "tsc --emitDeclarationOnly --declaration",
"build": "npm run clean && concurrently \"npm:tsc:check\" \"npm:build:esbuild\"",
"build:esbuild": "node --experimental-json-modules esbuild.config.mjs",
"build:watch": "npm run clean && concurrently \"npm:tsc:check\" \"npm:build:esbuild -- --watch\"",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "npm run lint -- --fix"
},
"author": "Justin Guze",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"concurrently": "^6.2.0",
"esbuild": "^0.12.12",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"minimist": "^1.2.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.4"
},
"engines": {
"node": ">=14"
}
}