-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
47
48
49
50
51
52
{
"name": "@phukon/duckduckgo-search",
"version": "1.1.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "pnpm run clean",
"build": "tsup",
"preversion": "pnpm run build",
"postversion": "git push --tags",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"repository": {
"type": "git",
"url": "https://github.com/phukon/duckduckgo_search.git"
},
"keywords": [
"duckduckgo",
"search",
"browser"
],
"author": "Riki Phukon",
"license": "mit",
"description": "",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.1.8"
},
"dependencies": {
"axios": "^1.7.9",
"jsdom": "^26.0.0",
"winston": "^3.17.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}