This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.47 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.47 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
{
"name": "@forgespace/brand-guide",
"version": "0.6.2",
"description": "Forge Space brand identity — types, tokens, and theme constants for cross-project consumption",
"type": "module",
"main": "./dist-lib/index.js",
"types": "./dist-lib/index.d.ts",
"exports": {
".": {
"import": "./dist-lib/index.js",
"types": "./dist-lib/index.d.ts"
},
"./identity": "./brand/identity.json",
"./siza-tokens.css": "./public/downloads/siza-tokens.css",
"./forge-tokens.css": "./public/downloads/forge-tokens.css"
},
"files": [
"dist-lib",
"brand/identity.json",
"public/downloads"
],
"scripts": {
"dev": "astro dev",
"generate": "node scripts/generate-brand.mjs",
"export:raster": "node scripts/export-raster-assets.mjs",
"build": "astro build",
"build:lib": "tsc -p tsconfig.lib.json && cp brand/identity.json dist-lib/",
"api:extract": "api-extractor run --local",
"api:check": "api-extractor run",
"api:docs": "api-documenter markdown --input-folder temp --output-folder docs/api",
"preview": "astro preview",
"check": "astro check",
"prepublishOnly": "npm run generate && npm run build:lib",
"test": "vitest run",
"prepare": "husky"
},
"keywords": [
"forge-space",
"brand-identity",
"design-tokens",
"theme",
"branding"
],
"author": "Forge Space",
"repository": {
"type": "git",
"url": "git+https://github.com/Forge-Space/brand-guide.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Forge-Space/brand-guide/issues"
},
"homepage": "https://brand.forgespace.co",
"dependencies": {
"@forgespace/branding-mcp": "^0.56.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@microsoft/api-documenter": "^7.29.10",
"@microsoft/api-extractor": "^7.58.1",
"@tailwindcss/vite": "^4.2.1",
"astro": "^6.0.4",
"husky": "^9.1.7",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"overrides": {
"yaml-language-server": {
"lodash": "4.17.23"
},
"axios": ">=0.0.0 <0.30.4 || >0.30.4 <1.14.1 || >=1.14.2",
"@astrojs/check": {
"typescript": "$typescript"
},
"@astrojs/language-server": {
"typescript": "$typescript"
},
"cosmiconfig-typescript-loader": {
"typescript": "$typescript"
}
},
"engines": {
"node": ">=22"
}
}