-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
34 lines (34 loc) · 941 Bytes
/
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
{
"name": "@rc-ex/events",
"version": "1.3.12",
"description": "Events extension for ringcentral-extensible project",
"author": "Tyler Liu <[email protected]>",
"homepage": "https://github.com/ringcentral/ringcentral-extensible/tree/master/packages/extensions/events",
"license": "MIT",
"files": [
"dist"
],
"types": "./dist/esm/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-extensible.git"
},
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-extensible/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json"
}
}