-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.51 KB
/
package.json
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
{
"name": "unifont",
"type": "module",
"version": "0.1.5",
"packageManager": "[email protected]",
"description": "Framework agnostic tools for accessing data from font CDNs and providers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unjs/unifont.git"
},
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && npm publish",
"test": "pnpm test:unit --coverage && pnpm test:types",
"test:unit": "vitest",
"test:types": "tsc --noEmit"
},
"dependencies": {
"css-tree": "^3.0.0",
"ohash": "^1.1.4"
},
"devDependencies": {
"@antfu/eslint-config": "3.9.1",
"@types/css-tree": "2.3.9",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "2.1.5",
"bumpp": "9.8.1",
"eslint": "9.14.0",
"lint-staged": "15.2.10",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.3",
"unbuild": "2.0.0",
"unstorage": "1.13.1",
"vite": "5.4.11",
"vitest": "2.1.5"
},
"resolutions": {
"unifont": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}