-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 769 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 769 Bytes
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
{
"description": "Shel.Neos:HyphensEditor",
"license": "GPL-3.0-or-later",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx,.js Resources/Private/Scripts/HyphensEditor/src",
"build": "yarn workspace hyphens-editor run build",
"watch": "yarn workspace hyphens-editor run watch"
},
"workspaces": [
"Resources/Private/Scripts/*"
],
"devDependencies": {
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"prettier": "^3.6.2"
},
"packageManager": "yarn@4.9.2",
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 4
}
}