-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.66 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@archoleat/notifier",
"description": "A small, simple and customizable notifier for your projects",
"version": "1.1.9",
"license": "MIT",
"author": {
"email": "nikkeyl.me@gmail.com",
"name": "Archoleat",
"url": "https://github.com/archoleat"
},
"homepage": "https://github.com/archoleat/notifier#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/archoleat/notifier.git"
},
"bugs": {
"url": "https://github.com/archoleat/notifier/issues"
},
"keywords": [
"archoleat-notifier",
"archoleat",
"node-notifier",
"node-notify",
"notifier",
"notify",
"plugin"
],
"engines": {
"bun": ">=1.0.0"
},
"type": "module",
"types": "dist/index.d.ts",
"imports": {
"#config/*": "./src/config/*",
"#helpers/*": "./src/utils/helpers/*",
"#src": "./src/*",
"#types/*": "./src/data/types/*",
"#utils/*": "./src/utils/*"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/icons",
"dist/index.d.ts",
"dist/index.js"
],
"scripts": {
"init": "bun i && husky"
},
"dependencies": {
"chalk": "^5.6.2",
"node-notifier": "^10.0.1"
},
"devDependencies": {
"@archoleat/commitlint-define-config": "^1.1.2",
"@archoleat/prettier-define-config": "^1.2.2",
"@archoleat/semantic-release-define-config": "^1.3.2",
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.0",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"conventional-changelog-conventionalcommits": "^10.2.0",
"editorconfig-checker": "^6.1.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unicorn": "^70.0.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"remark": "15.0.1",
"remark-cli": "^12.0.1",
"remark-preset-lint-consistent": "^6.0.1",
"remark-preset-lint-markdown-style-guide": "^6.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"rollup": "^4.62.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-esbuild": "^6.2.1",
"semantic-release": "^25.0.5",
"tslib": "^2.8.1"
}
}