-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.87 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.87 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
{
"name": "@m234/nerd-fonts",
"version": "0.5.1",
"description": "Gets Nerd Fonts glyph icons via a CSS class name or a file path with an extension.",
"keywords": [
"ansi",
"library",
"nerd-fonts",
"nerdfonts"
],
"bugs": {
"url": "https://github.com/Mopsgamer/nerd-fonts/issues"
},
"license": "MIT",
"author": "Mopsgamer",
"repository": {
"type": "git",
"url": "git+https://github.com/Mopsgamer/nerd-fonts.git"
},
"directories": {
"lib": "out"
},
"files": [
"mappings*.json",
"out"
],
"type": "module",
"exports": {
".": {
"types": "./out/index.d.ts",
"default": "./out/index.js"
},
"./icons": {
"types": "./out/icons.d.ts",
"default": "./out/icons.js"
},
"./fs": {
"types": "./out/fs-icons.d.ts",
"default": "./out/fs-icons.js"
},
"./mappings": {
"types": "./out/mappings.d.ts",
"default": "./out/mappings.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prerelease": "bun run test && bun run prod && bun run lint && bun run fmt --check && bun publint --pack bun --strict",
"test": "bun test src",
"lint": "bun run oxlint --type-aware",
"fmt": "bun run oxfmt",
"check": "bun tsgo -p . --noEmit",
"prod": "rm -rf out && tsgo -p tsconfig.prod.json",
"release:major": "bun run release-it --increment=major",
"release:minor": "bun run release-it --increment=minor",
"release:patch": "bun run release-it --increment=patch"
},
"devDependencies": {
"@m234/logger": "npm:@jsr/m234__logger",
"@release-it/keep-a-changelog": "^7.0.0",
"@types/node": "^25.0.3",
"@typescript/native-preview": "^7.0.0-dev.20251225.1",
"chalk": "^5.6.0",
"oxfmt": "^0.20.0",
"oxlint": "^1.35.0",
"oxlint-tsgolint": "^0.10.0",
"publint": "^0.3.18",
"release-it": "^19.2.1"
}
}