-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.38 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
{
"name": "curveforge-ui",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Browser playground for the curveforge Python library — design Dirac Live target curves with live audio preview.",
"homepage": "https://teolbb.github.io/curveforge-ui/",
"repository": {
"type": "git",
"url": "git+https://github.com/teolbb/curveforge-ui.git"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/",
"lint:css": "stylelint 'src/**/*.css' && node scripts/check-css-lines.mjs",
"lint:all": "npm run lint && npm run lint:css && npm run typecheck",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,css}' 'index.html'",
"format:check": "prettier --check 'src/**/*.{ts,css}' 'index.html'",
"schemas": "python3 scripts/extract_schemas.py > public/schemas.json"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^10.3.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-sonarjs": "^4.0.3",
"prettier": "^3.8.3",
"stylelint": "^17.11.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^5.6.0",
"vite": "^5.4.0"
},
"dependencies": {
"@preact/signals": "^2.9.0",
"htm": "^3.1.1",
"preact": "^10.29.1"
}
}