https://github.com/youngsecurity/dep-charge
A tool that analyzes all the dependencies in a project and gives a rating from 1 to 10 on how likely it is to get breached.
https://github.com/youngsecurity/dep-charge
Last synced: about 1 month ago
JSON representation
A tool that analyzes all the dependencies in a project and gives a rating from 1 to 10 on how likely it is to get breached.
- Host: GitHub
- URL: https://github.com/youngsecurity/dep-charge
- Owner: youngsecurity
- License: mit
- Created: 2026-04-03T20:35:12.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-04-16T05:24:48.000Z (about 2 months ago)
- Last Synced: 2026-04-16T07:27:56.912Z (about 2 months ago)
- Language: TypeScript
- Size: 116 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# sv
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```sh
# create a new project
npx sv create my-app
```
To recreate this project with the same configuration:
```sh
# recreate this project
npx sv@0.14.0 create --template minimal --types ts --no-install .
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```sh
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```sh
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.