forked from tarsgate/conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"type": "module",
"dependencies": {
"cosmiconfig": "9.0.0",
"fp-sdk": "0.5.0"
},
"devDependencies": {
"prettier": "2.8.3",
"@types/node": "^25.2.0",
"vitest": "^1.3.1",
"husky": "^9.0.0"
},
"scripts": {
"format": "(npx --no-install prettier --version || (echo '\nPlease install `prettier` via `npm install` first; if this problem persists, try `npm rebuild && npm install`' >&2 && exit 1)) && npx --no-install prettier --quote-props=consistent --write './**/*.{yml,ts}'",
"format:check": "(npx --no-install prettier --version || (echo '\nPlease install `prettier` via `npm install` first; if this problem persists, try `npm rebuild && npm install`' >&2 && exit 1)) && npx --no-install prettier --quote-props=consistent --check './**/*.{yml,ts}'",
"test": "vitest --globals=true",
"prepare": "husky"
}
}