-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
{
"name": "@soundtouchjs/monorepo",
"version": "1.0.6",
"private": true,
"description": "SoundTouchJS monorepo",
"type": "module",
"packageManager": "pnpm@10.33.0",
"bugs": {
"url": "https://github.com/cutterbl/SoundTouchJS/issues"
},
"author": "Steve 'Cutter' Blades",
"contributors": [
"Steve 'Cutter' Blades <web.admin@cutterscrossing.com> (https://cutterscrossing.com/)",
"Olli Parviainen <oparviai@iki.fi> (https://www.surina.net/soundtouch/)",
"Ryan Berdeen <ryan@ryanberdeen.com> (http://ryanberdeen.com/)",
"Jakub Fiala <jakub@fiala.space> (http://fiala.space/)",
"Adria Holovaty (http://www.holovaty.com/)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cutterbl/SoundTouchJS.git"
},
"license": "MPL-2.0",
"homepage": "https://github.com/cutterbl/SoundTouchJS",
"scripts": {
"build": "nx run-many -t build",
"dev": "nx dev demo",
"test": "nx run-many -t test",
"coverage:summary": "node ./scripts/generate-coverage-summary.mjs",
"typecheck": "nx run-many -t typecheck",
"lint": "nx run-many -t lint",
"release": "nx release",
"prettier": "prettier --write '**/*.{ts,js,json,html}'",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint/js": "^10.0.1",
"@nx/eslint-plugin": "22.7.2",
"@nx/js": "22.7.2",
"@nx/storybook": "22.7.2",
"@nx/vite": "22.7.2",
"@storybook/addon-docs": "^10.4.0",
"@storybook/react-vite": "^10.4.0",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.33",
"@types/node": "^25.8.0",
"@typescript-eslint/eslint-plugin": "8.59.3",
"@typescript-eslint/parser": "8.59.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.4.0",
"eslint-plugin-storybook": "10.4.0",
"husky": "^9.1.7",
"nx": "22.7.2",
"prettier": "^3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"storybook": "^10.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.13",
"vitest": "^4.1.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"nx"
]
}
}