-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.07 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.07 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
{
"name": "agecalc",
"homepage": "https://github.com/flex-development/agecalc",
"repository": "https://github.com/flex-development/agecalc.git",
"bugs": "https://github.com/flex-development/agecalc/issues",
"author": {
"name": "Lexus Drumgold",
"url": "https://github.com/unicornware"
},
"type": "module",
"scripts": {
"build": "bun --elide-lines=0 --filter=\"*\" build",
"check:ci": "bun check:format && bun check:lint && bun check:spelling && bun typecheck && bun test:cov && bun pack && bun clean:pack",
"check:format": "dprint check --incremental=false",
"check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .",
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
"clean:modules": "trash ./{bun.lock,node_modules} || exit 0",
"clean:pack": "trash \"./packages/*/*.tgz\" || exit 0",
"clean:test": "trash \"./coverage\"|| exit 0",
"commitlint": "commitlint -V",
"docker:prune": "docker system prune -f",
"fix:cg": "bun fix:format && bun fix:lint",
"fix:format": "dprint fmt",
"fix:lint": "bun check:lint --cache --fix",
"pack": "bash ./scripts/pack.sh",
"postinstall": "[ -f ./.git ] && [ -f ./node_modules/.bin/husky ] && chmod +x .husky/* && husky || exit 0",
"release": "bash ./scripts/release.sh",
"remark": "remark .",
"serve": "bun --elide-lines=0 -F=@flex-development/agecalc-api serve:watch",
"test": "cross-env NODE_OPTIONS=\"--conditions development\" vitest run",
"test:cov": "bun run test --coverage",
"test:cov:reports": "bun test:cov --merge-reports --mode=reports",
"test:reports": "bun run test --merge-reports --mode=reports",
"typecheck": "vitest run --typecheck --mode=typecheck"
},
"devDependencies": {
"@commitlint/cli": "20.3.1",
"@commitlint/types": "20.3.1",
"@faker-js/faker": "10.2.0",
"@flex-development/colors": "2.0.0",
"@flex-development/commitlint-config": "1.0.1",
"@flex-development/eslint-config": "1.1.1",
"@flex-development/grease": "3.0.0-alpha.9",
"@flex-development/pathe": "4.0.2",
"@flex-development/remark-preset": "1.0.0",
"@flex-development/tutils": "6.0.0-alpha.25",
"@swc/core": "1.15.8",
"@tsconfig/strictest": "2.0.8",
"@types/bun": "1.2.14",
"@types/chai": "5.2.3",
"@types/is-ci": "3.0.4",
"@types/node-notifier": "8.0.5",
"@vitest/coverage-v8": "3.2.4",
"bun": "1.2.14",
"bun-types": "1.2.14",
"cross-env": "10.1.0",
"cspell": "9.4.0",
"devlop": "1.1.0",
"dprint": "0.51.1",
"editorconfig": "3.0.1",
"eslint": "9.39.2",
"growl": "1.10.5",
"husky": "9.1.7",
"is-ci": "4.1.0",
"node-notifier": "10.0.1",
"prettier": "3.7.4",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"sh-syntax": "0.5.8",
"trash-cli": "7.0.0",
"ts-dedent": "2.2.0",
"typescript": "5.9.3",
"unified": "11.0.5",
"unplugin-swc": "1.5.9",
"vfile": "6.0.3",
"vitest": "3.2.4"
},
"engines": {
"bun": "1.2.14"
},
"packageManager": "bun@1.2.14",
"private": true,
"workspaces": [
"packages/*"
]
}