-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.12 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
74
75
76
77
78
79
{
"name": "eemoji",
"type": "module",
"version": "2.0.3",
"packageManager": "pnpm@9.1.3",
"description": "(๑•̀ㅂ•́)و✧ Add emojis to git commits",
"author": "Rettend",
"license": "MIT",
"homepage": "https://github.com/Rettend/eemoji#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Rettend/eemoji.git"
},
"bugs": "https://github.com/Rettend/eemoji/issues",
"keywords": [
"commit",
"emoji"
],
"exports": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"eemoji": "./bin/eemoji.mjs",
"eemoji-hook": "./bin/hook.sh"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "unbuild && pnpm run gen:presets",
"stub": "unbuild --stub && pnpm run gen:presets",
"dev": "node ./bin/eemoji.mjs",
"test": "vitest",
"test:ui": "vitest --ui --coverage --api 9527",
"lint": "eslint . --fix",
"typecheck": "tsc --noEmit",
"gen:presets": "tsx scripts/presets",
"gen:schema": "tsx scripts/schema",
"gen:table": "tsx scripts/readme-table",
"release": "bumpp && pnpm run build && pnpm publish",
"postinstall": "node ./bin/eemoji.mjs init -c none",
"preuninstall": "node ./bin/eemoji.mjs cleanup",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@cozy-console/mini": "^0.0.1",
"citty": "^0.1.6",
"consola": "^3.2.3",
"cosmiconfig": "^8.3.6",
"jsonc-parser": "^3.2.1",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.7",
"@vitest/coverage-istanbul": "^1.5.0",
"@vitest/ui": "^1.5.0",
"bumpp": "^9.4.0",
"comment-json": "^4.2.3",
"eemoji": "^2.0.3",
"eslint": "^9.3.0",
"lint-staged": "^15.2.2",
"markdown-table": "^3.0.3",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.7.2",
"typescript": "5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.5.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"prepare-commit-msg": "./bin/hook.sh"
},
"lint-staged": {
"*": "eslint --fix"
}
}