-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"name": "@smithy/server-common",
"version": "0.4.2",
"description": "Base components for Smithy services",
"homepage": "https://github.com/smithy-lang/smithy-typescript#readme",
"bugs": {
"url": "https://github.com/smithy-lang/smithy-typescript/issues"
},
"license": "Apache-2.0",
"author": "AWS Smithy Team",
"repository": {
"type": "git",
"url": "git+https://github.com/smithy-lang/smithy-typescript.git",
"directory": "smithy-typescript-libs/smithy-server-common"
},
"files": [
"dist-*/**"
],
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
"types": "./dist-types/index.d.ts",
"typesVersions": {
"<4.0": {
"dist/types/*": [
"dist/types/ts3.4/*"
]
}
},
"scripts": {
"build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
"build:es:cjs": "node ../../scripts/compilation/es_cjs.js",
"build:types": "premove dist-types && yarn g:tsc -p tsconfig.types.json",
"build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
"clean": "premove dist-cjs dist-es dist-types",
"test": "vitest run",
"test:watch": "vitest watch",
"test:integration": "vitest run -c vitest.config.integ.mts",
"test:integration:watch": "vitest watch -c vitest.config.integ.mts"
},
"dependencies": {
"@aws-sdk/core": "^3.977.6",
"@smithy/core": "workspace:^",
"@smithy/types": "workspace:^",
"re2-wasm": "^1.0.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^18.11.9",
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
"premove": "4.0.0",
"vitest": "^3.2.1"
},
"engines": {
"node": ">=18.0.0"
}
}