Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Always use pnpm.
Be extremely concise in all your responses.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

A multilingual collection of software development terms. Useful for building developer tools, documentation sites, personal portfolios, etc.

**[Docs](https://kyco.github.io/dev-dict/docs)** · **[Browse all terms](https://kyco.github.io/dev-dict/)**
**[Browse terms](https://kyco.github.io/dev-dict/)** | **[Documentation](https://kyco.github.io/dev-dict/docs)**


## Installation

Expand All @@ -22,7 +23,7 @@ import { TERMS, getTerms } from 'dev-dict'
// Define dictionary
const dictionary = getTerms({ terms: TERMS, locale: 'en-US' })

// Display terms
// Display translated terms
dictionary.forEach(term => {
console.log(term.name) // "React", "TypeScript", etc.
})
Expand Down Expand Up @@ -55,7 +56,7 @@ The root entry is best suited for server-side or build-time use cases where you

Contributions welcome! Please help add terms, provide translations, fix errors and/or suggest improvements.

See [CONTRIBUTING.md](./CONTRIBUTING.md) for details.
See [CONTRIBUTING.md](./CONTRIBUTING.md) for more details.

## Development

Expand Down
14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@
"./tags": {
"types": "./dist/tags-entry.d.ts",
"import": "./dist/tags-entry.js"
},
"./utils": {
"types": "./dist/utils-entry.d.ts",
"import": "./dist/utils-entry.js"
}
},
"sideEffects": false,
Expand Down Expand Up @@ -94,14 +90,14 @@
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^25.9.1",
"@vitest/ui": "^4.1.7",
"@vitest/ui": "^4.1.8",
"conventional-changelog-conventionalcommits": "^9.3.1",
"globals": "^17.6.0",
"semantic-release": "^25.0.3",
"tsx": "^4.22.3",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vite": "^8.0.14",
"vite-plugin-dts": "^5.0.1",
"vitest": "^4.1.7"
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.8"
}
}
Loading