-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 909 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 909 Bytes
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
{
"name": "tiny-ts-lib-starter",
"version": "1.0.0",
"description": "ts lib starter",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "dist/types/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm --minify",
"build": "yarn build-fast --dts",
"test": "uvu -r sucrase/register --ignore fixture",
"prettier": "prettier --write src/*",
"lint": "eslint",
"build:types": "tsc --emitDeclarationOnly"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"eslint": "7.9.0",
"prettier": "2.1.1",
"tsup": "5.11.7",
"typescript": "4.0.2",
"uvu": "0.5.2"
}
}