Skip to content

Commit ed75c6f

Browse files
committed
restore root package.json and package-lock.json after mainline merge
1 parent 9164073 commit ed75c6f

File tree

2 files changed

+77
-139
lines changed

2 files changed

+77
-139
lines changed

package-lock.json

Lines changed: 14 additions & 139 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"name": "root",
3+
"workspaces": [
4+
"packages/toolkit/src/browser",
5+
"packages/*",
6+
"plugins/*",
7+
"src.gen/@amzn/codewhisperer-streaming"
8+
],
9+
"version": "0.0.1",
10+
"private": true,
11+
"license": "Apache-2.0",
12+
"prettier": {
13+
"printWidth": 120,
14+
"trailingComma": "es5",
15+
"tabWidth": 4,
16+
"singleQuote": true,
17+
"semi": false,
18+
"bracketSpacing": true,
19+
"arrowParens": "avoid",
20+
"endOfLine": "lf"
21+
},
22+
"scripts": {
23+
"prepare": "ts-node ./scripts/prepare.ts",
24+
"postinstall": "npm run buildCustomLintPlugin",
25+
"buildCustomLintPlugin": "npm run build -w plugins/eslint-plugin-aws-toolkits",
26+
"compile": "npm run compile -w packages/",
27+
"testCompile": "npm run testCompile -w packages/",
28+
"test": "npm run test -w packages/",
29+
"testE2E": "npm run testE2E -w packages/",
30+
"testInteg": "npm run testInteg -w packages/",
31+
"package": "npm run package -w packages/",
32+
"newChange": "ts-node ./scripts/newChange.ts",
33+
"createRelease": "npm run createRelease -w packages/",
34+
"format": "prettier --check plugins && npm run format -w packages/",
35+
"formatfix": "prettier --write plugins && npm run formatfix -w packages/",
36+
"lint": "npm run lint -w packages/ && npm run format",
37+
"lintfix": "eslint -c .eslintrc.js --fix --ext .ts packages plugins && npm run formatfix",
38+
"clean": "npm run clean -w packages/ -w plugins/",
39+
"reset": "npm run clean && ts-node ./scripts/clean.ts node_modules packages/toolkit/node_modules && npm install",
40+
"generateNonCodeFiles": "npm run generateNonCodeFiles -w packages/"
41+
},
42+
"devDependencies": {
43+
"eslint": "^8.56.0",
44+
"eslint-config-prettier": "9.1",
45+
"eslint-plugin-aws-toolkits": "file:plugins/eslint-plugin-aws-toolkits",
46+
"eslint-plugin-header": "^3.1.1",
47+
"eslint-plugin-unicorn": "^50.0.1",
48+
"@typescript-eslint/eslint-plugin": "^5.59.0",
49+
"@typescript-eslint/parser": "^5.59.1",
50+
"@types/vscode": "^1.68.0",
51+
"@types/vscode-webview": "^1.57.1",
52+
"@vscode/codicons": "^0.0.33",
53+
"@vscode/test-electron": "^2.3.8",
54+
"@vscode/test-web": "^0.0.50",
55+
"@vscode/vsce": "^2.19.0",
56+
"prettier": "^2.8.8",
57+
"prettier-plugin-sh": "^0.12.8",
58+
"pretty-quick": "^3.1.3",
59+
"husky": "^9.0.7",
60+
"typescript": "^5.0.4",
61+
"ts-node": "^10.9.1"
62+
}
63+
}

0 commit comments

Comments
 (0)