-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.74 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
{
"name": "@omega-edit/core",
"version": "0.9.83",
"private": "true",
"description": "OmegaEdit Client and Server",
"publisher": "CTC-OSS",
"repository": {
"url": "https://github.com/ctc-oss/omega-edit",
"type": "git"
},
"bugs": {
"url": "https://github.com/ctc-oss/omega-edit/issues"
},
"author": "CTC-OSS",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "prettier --check package.json && yarn workspaces run lint",
"lint:fix": "prettier --write package.json && yarn workspaces run lint:fix",
"package": "yarn workspace @omega-edit/server package && yarn workspace @omega-edit/client package",
"package-no-sbt": "yarn workspace @omega-edit/server package-no-sbt && yarn workspace @omega-edit/client package"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"chai": "^4.3.10",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.8.2",
"prettier": "^3.4.1",
"run-script-os": "^1.1.6",
"ts-loader": "^9.5.1",
"typedoc": "^0.27.2",
"typescript": "^5.7.2",
"unzip-stream": "^0.3.4",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"es2021": true
}
}
}