-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.47 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.47 KB
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
71
72
73
74
75
76
77
78
{
"name": "smithy-typescript",
"private": true,
"version": "1.0.0",
"description": "Smithy TypeScript packages",
"main": "index.js",
"scripts": {
"clean": "turbo run clean --force --parallel",
"build": "turbo run build",
"test": "make test-unit",
"test:integration": "yarn build-test-packages && make test-integration",
"test:protocols": "make generate-protocol-tests test-protocols benchmark",
"lint": "turbo run lint",
"lint-fix": "turbo run lint -- --fix",
"lint:pkgJson": "yarn lint:dependencies",
"lint:dependencies": "node scripts/check-dependencies.js",
"lint:versions": "node scripts/runtime-dep-version-check.js",
"lint:api": "node scripts/validation/api-snapshot-validation.js",
"format": "turbo run format --parallel",
"stage-release": "turbo run stage-release",
"extract:docs": "mkdir -p api-extractor-packages && turbo run extract:docs",
"release": "yarn changeset publish",
"build-test-packages": "./gradlew clean build && node ./scripts/build-generated-test-packages",
"g:tsc": "cd $INIT_CWD && tsc",
"g:vitest": "cd $INIT_CWD && vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/smithy-lang/smithy-typescript/tree/main"
},
"author": "AWS Smithy Team",
"license": "UNLICENSED",
"dependencies": {
"@changesets/cli": "^2.27.5",
"glob": "^7.1.6",
"premove": "4.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "7.52.7",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@tsconfig/recommended": "1.0.2",
"@types/jest": "28.1.3",
"@types/jsdom": "20.0.1",
"@typescript-eslint/eslint-plugin": "8.32.0",
"@typescript-eslint/parser": "8.32.0",
"esbuild": "^0.25.9",
"eslint": "8.57.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-tsdoc": "0.2.17",
"get-port": "^7.1.0",
"happy-dom": "20.8.8",
"husky": "^4.2.3",
"jest": "29.7.0",
"prettier": "3.2.5",
"puppeteer": "^19.2.0",
"rollup": "^4.59.0",
"ts-jest": "29.1.2",
"turbo": "2.5.8",
"typescript": "~5.8.3",
"vite": "^7.1.11",
"vitest": "^3.2.4",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"overrides": {},
"workspaces": [
"packages/*",
"smithy-typescript-ssdk-libs/*",
"private/*"
],
"packageManager": "yarn@4.10.3",
"husky": {
"hooks": {
"pre-commit": "yarn lint:dependencies && yarn lint:versions & yarn lint:api"
}
}
}