-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "score",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "Score — A component-based audio framework for creating EDM music in JavaScript",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"bash -c 'pnpm typecheck'"
]
},
"devDependencies": {
"@rollup/rollup-win32-x64-msvc": "^4.59.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-tsdoc": "^0.5.2",
"husky": "^9.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.0.0",
"turbo": "^2.0.0",
"typedoc": "^0.28.17",
"typescript": "^5.5.0",
"typescript-eslint": "^8.57.0"
},
"packageManager": "pnpm@10.32.1"
}