-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "flareup",
"version": "0.3.1",
"description": "Styled terminal alerts for direct messages and wrapped commands.",
"keywords": [
"alert",
"cli",
"flareup",
"notification",
"styled",
"terminal"
],
"homepage": "https://github.com/simonflk/flareup#readme",
"bugs": "https://github.com/simonflk/flareup/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simonflk/flareup.git"
},
"bin": {
"flareup": "./dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/cli.ts src/index.ts --format esm --clean --out-dir dist --dts",
"build:test": "tsc --project tsconfig.test.json",
"format": "oxfmt --write package.json .oxfmtrc.json .oxlintrc.json tsconfig.json tsconfig.test.json src test",
"format:check": "oxfmt --check package.json .oxfmtrc.json .oxlintrc.json tsconfig.json tsconfig.test.json src test",
"lint": "oxlint src test --deny-warnings",
"check": "npm run format:check && npm run lint",
"test": "npm run build:test && node --test",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^24.5.2",
"husky": "^9.1.7",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20"
}
}