-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"name": "brand-os",
"version": "0.2.1",
"description": "CLI for brand operating systems, template scaffolding, Brand OS asset emit, and AST parsing",
"author": "UI8Kit",
"license": "MIT",
"type": "module",
"keywords": [
"brand-os",
"ui8kit",
"cli",
"branding",
"design-system",
"brand-system",
"ast",
"npx",
"npm",
"node",
"vite",
"react",
"scaffolding",
"template"
],
"homepage": "https://github.com/ui8kit/brand-os",
"bugs": {
"url": "https://github.com/ui8kit/brand-os/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ui8kit/brand-os.git"
},
"bin": {
"brand-os": "./dist/index.js"
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json",
"build": "tsc -p tsconfig.build.json",
"brand:emit": "npm run build && node dist/index.js --schema \".project/Tech Brand OS/tech-brand-os.schema.json\" --parser-contract \".project/Tech Brand OS/tech-brand-os-parser-contract.json\" --fixtures \".project/Tech Brand OS/tech-brand-os-parser-fixtures.source.json\" --emit-dir \".project/Tech Brand OS/tech-brand-os-generated\"",
"prepublishOnly": "tsc --noEmit -p tsconfig.json && tsc -p tsconfig.build.json",
"test": "node --test"
},
"files": [
"README.md",
"AGENTS.md",
"dist",
"template-react",
"template-react-resta",
"template-tech-blog"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.8.0"
},
"dependencies": {
"node-html-parser": "^7.1.0"
}
}