-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "microbundle-package-template",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.module.js",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"umd": "./dist/index.umd.js",
"import": "./dist/index.module.js",
"require": "./dist/index.js",
"default": "./dist/index.module.js"
}
},
"scripts": {
"lint": "eslint --ext .ts,.tsx src --color",
"size": "npm run build && size-limit",
"check-types": "tsc --noEmit true",
"build": "microbundle build --entry src/index.ts",
"test": "vitest",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"release": "bumpp -r && npm publish"
},
"keywords": [],
"author": "hunghg255",
"license": "MIT",
"devDependencies": {
"@hunghg255/eslint-config-ts": "^0.0.2",
"@size-limit/preset-small-lib": "^8.2.6",
"bumpp": "^9.2.1",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"git-scm-hooks": "^0.0.7",
"microbundle": "^0.15.1",
"prettier": "^2.8.8",
"size-limit": "^8.2.6",
"typescript": "^5.3.3",
"verify-commit-msg": "^0.0.10"
},
"files": [
"dist"
],
"size-limit": [
{
"path": "dist/index.module.js",
"name": "a",
"import": "{ a }",
"limit": "3 KB"
},
{
"path": "dist/index.module.js",
"name": "b",
"import": "{ b }",
"limit": "3 KB"
}
],
"homepage": "https://github.com/hunghg255/hunghg255",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/hunghg255"
},
"bugs": {
"url": "https://github.com/hunghg255/hunghg255/issues"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
}
}