-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
52
{
"name": "liby",
"private": true,
"version": "1.0.0",
"description": "Personal quickstart template for TypeScript libraries",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "vitest --passWithNoTests",
"coverage": "vitest run --coverage",
"build": "tsup src/index.ts --dts --format esm,cjs --minify",
"lint": "eslint src/**/*.*",
"lint:fix": "eslint --fix src/**/*.*",
"prepare": "husky install"
},
"keywords": [
"boilerplate",
"eslint",
"typescript"
],
"author": {
"name": "Cristopher Namchee",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-namchee": "^1.0.18",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"rimraf": "^3.0.2",
"tsup": "^7.1.0",
"typescript": "5.1.6",
"typesync": "^0.9.2",
"vite": "^4.3.9",
"vitest": "^0.32.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}