- Create packages/branding/ workspace package (@paperclipai/branding) - Add VOCAB constant with 8 Nexus display strings (company, companies, ceo, board, hire, fire, appName, tagline) - Export VocabKey type for type-safe string lookups - Add vitest config and 9 passing unit tests covering all VOCAB values - Update pnpm-lock.yaml to link new workspace package
34 lines
670 B
JSON
34 lines
670 B
JSON
{
|
|
"name": "@paperclipai/branding",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./*": "./src/*.ts"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./*": {
|
|
"types": "./dist/*.d.ts",
|
|
"import": "./dist/*.js"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|