-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.42 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
53
54
55
56
57
58
59
60
{
"name": "@halil-pan/ts-lib-template",
"version": "1.4.0",
"description": "awesome library",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "xv dist",
"start": "esno src/index.ts",
"dev": "tsup --watch",
"build": "tsup",
"prepare": "husky install",
"fresh": "taze -w & pnpm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halil-pan/ts-lib-template.git"
},
"keywords": [
"typescript",
"library"
],
"author": "halil-pan",
"license": "MIT",
"bugs": {
"url": "https://github.com/halil-pan/ts-lib-template/issues"
},
"homepage": "https://github.com/halil-pan/ts-lib-template#readme",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.11.19",
"esno": "^0.12.1",
"husky": "^7.0.4",
"rome": "^11.0.0",
"tsup": "^5.12.9",
"typescript": "^4.9.5",
"xv": "^1.1.1"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.test.*.map",
"!dist/**/*.test.d.ts"
],
"publishConfig": {
"access": "public"
}
}