-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@kweli/cs-rest",
"version": "3.1.4",
"description": "Simple authentication and REST calls for OpenText Content Server.",
"type": "module",
"source": "./src/index.ts",
"exports": {
"types": "./lib/index.d.ts",
"require": "./lib/cs-rest.cjs",
"default": "./lib/cs-rest.modern.js"
},
"main": "./lib/cs-rest.cjs",
"module": "./lib/cs-rest.esm.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/chriscdn/cs-rest",
"author": "Christopher Meyer <[email protected]> (https://kwe.li/)",
"license": "MIT",
"scripts": {
"build": "rm -rf ./lib/ && microbundle --format modern,esm,cjs",
"watch": "microbundle watch",
"bump": "versiony package.json --patch"
},
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"@types/node": "^20.14.2",
"microbundle": "^0.15.1",
"openapi-typescript": "^6.7.6",
"typescript": "^5.4.5",
"versiony": "^2.0.1",
"versiony-cli": "^1.3.0"
},
"keywords": [
"opentext",
"content-server",
"rest",
"axios"
]
}