https://github.com/viqueen/typescript-package
Template for building simple node packages using Typescript
https://github.com/viqueen/typescript-package
node npm npm-package typescript yarn
Last synced: 5 months ago
JSON representation
Template for building simple node packages using Typescript
- Host: GitHub
- URL: https://github.com/viqueen/typescript-package
- Owner: viqueen
- License: apache-2.0
- Created: 2023-05-24T01:50:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-23T02:42:29.000Z (5 months ago)
- Last Synced: 2025-08-23T04:26:38.906Z (5 months ago)
- Topics: node, npm, npm-package, typescript, yarn
- Language: TypeScript
- Homepage:
- Size: 308 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## typescript-package
Template for building node packages using Typescript
### environment
- **[nvm](https://github.com/nvm-sh/nvm)** to manage node versions.
```bash
brew install nvm
```
- install node version
```bash
nvm install
```
### house-keeping
- install dependencies
```bash
npm ci
```
- build it
```bash
npm run build
```
- format it
```bash
npm run format
```
- lint it
```bash
npm run lint
npm run lint --fix
```
- test it
```bash
npm test
```
- invite claude
```bash
npm run claude
```