-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.77 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "semo-plugin-api",
"version": "2.0.0",
"description": "Provide ability to do restful api request, like curl",
"keywords": [
"semo",
"plugin",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/semojs/semo-plugin-api"
},
"main": "lib/index.js",
"type": "module",
"types": "lib/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.15.16",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitest/coverage-v8": "^3.1.3",
"@vitest/eslint-plugin": "^1.1.44",
"@vitest/ui": "^3.1.3",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.3",
"globals": "^16.1.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vitest": "^3.1.3"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"clean": "rimraf lib",
"test": "vitest run",
"test:watch": "vitest ",
"test:ui": "vitest --ui",
"test:cov": "vitest run --coverage",
"postversion": "git push && git push --tags",
"prepublish": "npm run clean && npm run build",
"prepare": "husky",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,js}\"",
"format:check": "prettier --check \"**/*.{ts,js}\"",
"deploy": "npm version patch",
"deploy:minor": "npm version minor",
"deploy:major": "npm version major"
},
"dependencies": {
"@semo/core": "^2.0.11",
"axios": "^1.9.0",
"lodash": "^4.17.21",
"qs": "^6.14.0",
"socks-proxy-agent": "^8.0.5"
},
"publishConfig": {
"access": "public"
}
}