-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.11 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
45
46
{
"name": "agoda-devfeedback",
"exports": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"version": "1.1.0",
"scripts": {
"build": "tsc --emitDeclarationOnly --outDir ./lib",
"build-cjs": "tsc --module commonjs --outDir ./lib/cjs",
"build-esm": "tsc --module esnext --outDir ./lib/esm",
"test": "jest",
"lint": "eslint"
},
"dependencies": {
"axios": "^1.7.4",
"safely-try": "^0.4.3",
"uuid": "^9.0.0"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"webpack": "^5.88.1"
},
"peerDependencies": {
"vite": "^4.0.0",
"webpack": "^4.0.0 || ^5.0.0"
}
}