-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "jitsi-aws-cdk",
"version": "1.0.0",
"description": "",
"author": "jitsi-contrib",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jitsi-contrib/jitsi-aws-cdk.git"
},
"bugs": {
"url": "https://github.com/jitsi-contrib/jitsi-aws-cdk/issues"
},
"keywords": [
"aws",
"cdk",
"jitsi"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "node ./test/index.test.mjs",
"pretest": "npm run build",
"build": "rm -rf dist && npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.esm.json --emitDeclarationOnly --outDir dist/types",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"peerDependencies": {
"aws-cdk-lib": "^2.184.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.10.1",
"eslint": "^9.22.0",
"typescript": "^5.8.2"
}
}