-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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": "dataforseo-client",
"version": "2.0.20",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"description": "API client that provide services of DataForSeo API \n\n For more information about client code generation, please follow to github",
"scripts": {
"build:esm": "tsc -p tsconfig.esm.json && node fix-esm-imports.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"test": "jest --verbose"
},
"files":[
"dist",
"README.md",
"package.json"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./models": {
"import": "./dist/esm/models/index.js",
"require": "./dist/cjs/models/index.js"
},
"./api": {
"import": "./dist/esm/api/index.js",
"require": "./dist/cjs/api/index.js"
}
},
"sideEffects": false,
"devDependencies": {
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"@types/jest": "^29.0.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dataforseo/TypeScriptClient.git"
},
"author": "dataforseo",
"license": "ISC",
"homepage": "https://github.com/dataforseo/TypeScriptClient#readme"
}