-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@pedalboard/core",
"version": "2.0.0",
"description": "Modern TypeScript library for creating guitar effects and audio processing using Web Audio API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "npm run build:lib && npm run build:app",
"build:lib": "npm run clean && tsup",
"build:app": "vite build --mode app",
"clean": "rimraf dist dist-app",
"preview": "npm run build:app && vite preview --mode app --outDir dist-app",
"test": "vitest",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdevbrian/PedalBoard.git"
},
"keywords": [
"web-audio",
"audio",
"guitar",
"effects",
"pedals",
"music",
"dsp",
"typescript",
"react"
],
"author": "Brian (original by Armagan Amcalar)",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.32",
"rimraf": "^5.0.5",
"tailwindcss": "^3.3.6",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.7",
"vitest": "^1.0.4"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"lucide-react": "^0.294.0",
"clsx": "^2.0.0",
"zustand": "^4.4.7"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}