-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
48
49
{
"name": "dictionary-api-client",
"description": "A lightweight JavaScript & TypeScript client for the free Dictionary API (dictionaryapi.dev), built with native fetch",
"type": "module",
"version": "1.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --verbose"
},
"keywords": [
"dictionary",
"dictionary-api",
"dictionaryapi",
"free-dictionary-api",
"words",
"fetch-api",
"api-client"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/NPM-Workbench/dictionary-api-client"
},
"homepage": "https://github.com/NPM-Workbench/dictionary-api-client",
"bugs": {
"url": "https://github.com/NPM-Workbench/dictionary-api-client/issues"
}
}