-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "cubase-mcu-midiremote",
"version": "1.11.0",
"private": true,
"scripts": {
"build": "tsup",
"start": "tsup --watch",
"tsc": "tsc",
"postversion": "npm run build",
"postinstall": "patch-package"
},
"author": "bjoluc",
"license": "MIT",
"devDependencies": {
"@bjoluc/semantic-release-config-npm": "^5.0.0",
"@sindresorhus/slugify": "^2.2.1",
"@types/color-diff": "^1.2.5",
"@types/node": "^20.12.8",
"abbreviate": "0.0.3",
"color-diff": "1.4.0",
"core-js": "3.37.0",
"dotenv": "^16.4.5",
"execa": "^8.0.1",
"jest-docblock": "^29.7.0",
"patch-package": "^8.0.0",
"prepend-file": "^2.0.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"tsup": "^8.0.2",
"type-fest": "^4.18.1",
"typescript": "^5.4.5"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"prettier": {
"printWidth": 100,
"plugins": [
"prettier-plugin-organize-imports"
],
"organizeImportsSkipDestructiveCodeActions": true
}
}