-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"name": "fontaine-monorepo",
"preview": true,
"type": "module",
"packageManager": "pnpm@10.29.3",
"description": "Automatic font fallback based on font metrics",
"author": {
"name": "Daniel Roe",
"email": "daniel@roe.dev",
"url": "https://github.com/danielroe"
},
"license": "MIT",
"scripts": {
"build": "pnpm --filter fontaine --filter fontless build",
"lint": "eslint .",
"release": "bumpp packages/fontaine/package.json --tag fontaine@ --sign && bumpp packages/fontless/package.json --tag fontless@ --sign",
"test:unit": "pnpm -r test:unit",
"test:types": "pnpm -r test:types",
"test:knip": "knip",
"test:versions": "installed-check -d --ignore=vite --workspace-ignore='packages/fontless/examples/*' --workspace-ignore='packages/fontless/docs'",
"postinstall": "simple-git-hooks install && pnpm --filter fontaine build"
},
"devDependencies": {
"@antfu/eslint-config": "7.4.3",
"bumpp": "11.0.1",
"changelogen": "0.6.2",
"changelogithub": "14.0.0",
"eslint": "10.2.0",
"installed-check": "10.0.1",
"knip": "6.0.3",
"lint-staged": "16.2.7",
"pkg-pr-new": "0.0.63",
"simple-git-hooks": "2.13.1",
"typescript": "6.0.2"
},
"resolutions": {
"@nuxt/fonts>fontaine": "latest",
"fontaine": "workspace:*",
"fontless": "workspace:*",
"unstorage": "1.17.4",
"vue": "3.5.30"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}