generated from metachris/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 KB
/
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
43
44
45
46
47
48
49
50
{
"name": "@daolanfler/simple-heartbeat",
"version": "0.0.5",
"description": "simple heartbeat manager",
"author": "daolanfler <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/daolanfler/simple-heartbeat.git"
},
"license": "MIT",
"keywords": [
"heartbeat"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "vitest",
"coverage": "vitest run --coverage",
"clean": "rimraf dist build package",
"docs": "typedoc --entryPoints src/index.ts",
"build": "rimraf dist && unbuild",
"dev": "unbuild --stub",
"start": "esno ./src/index.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitest/coverage-c8": "^0.28.5",
"eslint": "^8.34.0",
"rimraf": "4.1.2",
"typedoc": "^0.23.25",
"typescript": "^4.9.5",
"unbuild": "^1.1.1",
"vite": "^4.1.1",
"vitest": "^0.28.5"
},
"files": [
"dist"
]
}