-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
51
{
"name": "log-pal",
"author": "Alan Currie <[email protected]> (https://usedfuture.digital)",
"version": "0.0.0",
"keywords": [
"vanilla",
"typescript",
"vite"
],
"bugs": {
"url": "https://github.com/<YOUR_USER_NAME>/my-ts-lib/issues"
},
"description": "LogPal: Your colorful companion for vibrant and flamboyant logging. Bring a splash of palette to your console!",
"type": "module",
"license": "MIT",
"main": "./dist/my-lib.umd.cjs",
"module": "./dist/my-lib.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/my-lib.js",
"require": "./dist/my-lib.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "vitest typecheck",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.15.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"typescript": "^5.0.0",
"vite": "^4.2.0",
"vite-plugin-dts": "^2.1.0",
"vitest": "^0.34.4"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-prettier": "^4.2.1"
}
}