-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.52 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
87
88
89
90
91
92
93
{
"name": "@nebutra/fonts",
"version": "0.1.1",
"type": "module",
"description": "Self-hosted OSS font registry — build-time next/font faces + a name→CSS-var resolver so theme / DESIGN.md fonts render with zero runtime external requests",
"private": false,
"nebutra": {
"status": "wip",
"productionReady": false,
"surface": "support-contract",
"featureId": "fonts",
"category": "design",
"summary": "Self-hosted OSS font registry for next/font + CSS-var resolution",
"gaps": [
"First intentional public publish not yet cut — workspace-only until release surface includes fonts"
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Nebutra/fonts.git"
},
"files": [
"dist",
"generated/vivo-sans-cn.css",
"generated/subset-manifest.json",
"generated/*.woff2",
"vendor/vivo-sans/LICENCE-vivo-Sans.txt",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./next": {
"types": "./src/next.ts",
"import": "./src/next.ts",
"default": "./src/next.ts"
},
"./next/cjk": {
"types": "./src/next-cjk.ts",
"import": "./src/next-cjk.ts",
"default": "./src/next-cjk.ts"
},
"./cjk": {
"types": "./dist/generated/index.d.ts",
"import": "./dist/generated/index.js",
"default": "./dist/generated/index.js"
},
"./cjk.css": "./generated/vivo-sans-cn.css",
"./generated/*": "./generated/*"
},
"scripts": {
"subset:cjk": "node scripts/subset-cjk.mjs",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"build": "tsup"
},
"devDependencies": {
"@types/react": "^19.2.14",
"typescript": "^5.9.3",
"vitest": "^4.1.4",
"tsup": "^8.5.1",
"jsdom": "^29.1.1",
"react": "^19",
"@types/node": "^22.10.0"
},
"peerDependencies": {
"next": ">=15",
"react": "^19"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/Nebutra/fonts#readme",
"bugs": {
"url": "https://github.com/Nebutra/fonts/issues"
},
"nebutraMirror": {
"sourceRepository": "Nebutra/Nebutra-Sailor",
"sourceDirectory": "packages/design/fonts",
"sourcePackage": "@nebutra/fonts",
"sourceSha": "aee8b4bf8b3f54118ee16e96301ea18d46ebfa88",
"canonicalSource": "monorepo"
},
"packageManager": "pnpm@10.32.1"
}