-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "@amzn/monorepo-language-server-runtimes",
"version": "1.0.0",
"description": "A monorepo for Language Servers Runtimes for AWS",
"files": [
"out",
"protocol",
"runtimes",
"server-interface",
"testing"
],
"workspaces": [
"types",
"runtimes",
"chat-client-ui-types"
],
"repository": {
"type": "git",
"url": "https://github.com/aws/language-server-runtimes"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "ts-node ./script/clean.ts",
"compile": "tsc --build && npm run compile --workspaces --if-present",
"check:formatting": "prettier --check .",
"fix:prettier": "prettier . --write",
"format-staged": "npx pretty-quick --staged",
"prepare": "husky .husky",
"test": "npm run test --workspaces --if-present",
"preversion": "npm run test",
"version": "npm run compile && git add -A .",
"watch": "tsc --build --watch"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"assert": "^2.0.0",
"husky": "^9.1.6",
"prettier": "3.3.3",
"pretty-quick": "^4.0.0",
"shx": "^0.3.4",
"sinon": "^19.0.2",
"ts-mocha": "^10.0.0",
"ts-sinon": "^2.0.2",
"typescript": "^5.6.3"
},
"typesVersions": {
"*": {
"browser": [
"./out/runtimes/webworker.d.ts"
]
}
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf"
}
}