https://github.com/chrisweb/vo
https://github.com/chrisweb/vo
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chrisweb/vo
- Owner: chrisweb
- Created: 2025-03-26T13:50:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-13T21:50:54.000Z (about 1 year ago)
- Last Synced: 2025-07-30T15:03:45.150Z (11 months ago)
- Language: TypeScript
- Size: 2.86 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vo
## development
install dependencies:
```shell
npm i
```
start dev server:
```shell
npm run dev
```
the project is currently a prototype so some dependencies are set to "canary" or "beta", so to update the package-lock.json it is recommended to run the update command (for example using install will not update canary version in the lock file):
```shell
npm update
```
### scripts
`npm run dev`: launch dev server (with turbopack)
`npm run build`: production build
`npm run build-debug`: production build with verbose output
`npm run start`: start production server
`npm run lint`: custom linting script
`npm run lint-nocache`: linting without cache
`npm run lint-debug`: linting with verbose output
`npm run lint-fix`: linting with automatic fixing
`npm run info`: next.js tool to get info about the project
`npm run next-lint`: backup of the original next.js lint command (use "lint" instead)