-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.48 KB
/
package.json
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
88
89
90
{
"name": "klavier",
"description": "A lightweight, customizable, interactive piano library built with React.",
"version": "0.0.0-semantic-release",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tigranpetrossian/klavier"
},
"keywords": [
"piano",
"midi",
"react",
"interactive"
],
"type": "module",
"files": [
"dist"
],
"exports": {
"./presets/realistic": {
"require": "./dist/realistic.cjs",
"import": "./dist/realistic.mjs",
"types": "./dist/realistic.d.ts"
},
"./presets/realistic.css": {
"import": "./dist/realistic.css",
"require": "./dist/realistic.css"
},
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "vite build --mode development --watch",
"build": "vite build",
"lint": "eslint \"src/**/*.{ts,tsx}\" --ext ts,tsx --fix --max-warnings 0",
"test": "vitest",
"prepare": "husky"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"happy-dom": "^14.3.9",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss-nesting": "^12.1.0",
"postcss-preset-env": "^9.5.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vite-plugin-dts": "^3.9.0",
"vite-plugin-mkcert": "^1.17.5",
"vite-plugin-static-copy": "^1.0.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --cache --fix --max-warnings 0",
"prettier --write"
]
},
"packageManager": "[email protected]"
}