-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 KB
/
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
35
36
37
38
39
40
41
42
43
44
{
"name": "carbon-connect-js",
"version": "0.0.22",
"description": "A headless API wrapper of carbon.ai",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"type-check": "tsc --noEmit",
"build": "rollup -c",
"dev": "rollup -c --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hubbleai/carbon-connect-js.git"
},
"author": "carbon.ai",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/hubbleai/carbon-connect-js/issues"
},
"homepage": "https://github.com/hubbleai/carbon-connect-js#readme",
"devDependencies": {
"@babel/core": ">=7.23.2",
"@babel/preset-env": ">=7.23.2",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/es6-promise": "^3.3.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.10",
"jest": "^29.7.0",
"rollup": "^3.25.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}