forked from delta-kimigatame/tsuru
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.57 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.57 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
79
80
81
82
83
84
85
86
87
{
"name": "tsuru",
"version": "1.0.0",
"description": "UTAU rendering unit on browser.",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"makedoc": "npx typedoc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o docs/storybook",
"eslint": "eslint \"src/**/*.{ts,tsx}\"",
"eslint:fix": "eslint --fix \"src/**/*.{ts,tsx}\""
},
"keywords": [
"UTAU"
],
"type": "module",
"author": "delta_kimigatame",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.1",
"@mui/icons-material": "^6.4.2",
"@mui/lab": "^6.0.0-beta.25",
"@mui/material": "^6.4.2",
"@mui/styled-engine-sc": "^6.4.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"glob": "^13.0.0",
"i18next": "^24.2.2",
"iconv-lite": "^0.6.3",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"react": "^19.0.0",
"react-cookie": "^7.2.2",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-i18next": "^15.4.0",
"styled-components": "^6.1.14",
"tsworld": "^0.0.7",
"utauoto": "^0.6.6",
"utauwav": "^0.6.7",
"zustand": "^5.0.3"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@storybook/addon-a11y": "^10.1.8",
"@storybook/addon-docs": "^10.1.8",
"@storybook/addon-onboarding": "^10.1.8",
"@storybook/addon-vitest": "^10.1.8",
"@storybook/react": "^10.1.8",
"@storybook/react-vite": "^10.1.8",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/lodash": "^4.17.16",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^3.0.5",
"cross-env": "^7.0.3",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.8.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unicorn": "^57.0.0",
"jsdom": "^26.0.0",
"storybook": "^10.1.8",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vite": "^6.0.11",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-wasm": "^3.4.1",
"vitest": "^3.0.5"
}
}