-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "loopweave",
"private": true,
"version": "1.0.0",
"description": "A browser-first audio texture tool for finding, rendering, auditioning, and exporting seamless loops from arbitrary recordings.",
"author": {
"name": "Shaun Pedicini",
"url": "https://mordenstar.com"
},
"license": "MIT",
"homepage": "https://loopweave.specr.net",
"repository": {
"type": "git",
"url": "git+https://github.com/scpedicini/loopweave.git"
},
"bugs": {
"url": "https://github.com/scpedicini/loopweave/issues"
},
"packageManager": "pnpm@10.8.1",
"type": "module",
"scripts": {
"dev": "vite --port 6772",
"build": "tsc && vite build",
"preview": "vite preview",
"brand:assets": "bash scripts/generate-brand-assets.sh",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"quality": "pnpm run check && pnpm run typecheck && pnpm run test && pnpm run build"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vitest": "^4.1.10"
}
}