lacspace-http 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "lacspace-http",
3
+ "version": "0.1.0",
4
+ "description": "A keyless, zero-dependency terminal API client and .http/.rest file runner — send requests, chain captured tokens and assert responses as a CI test suite. Zero dependencies.",
5
+ "type": "module",
6
+ "bin": {
7
+ "lacspace-http": "dist/cli.js"
8
+ },
9
+ "main": "./dist/lib.cjs",
10
+ "module": "./dist/lib.js",
11
+ "types": "./dist/lib.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/lib.d.ts",
15
+ "import": "./dist/lib.js",
16
+ "require": "./dist/lib.cjs"
17
+ },
18
+ "./package.json": "./package.json"
19
+ },
20
+ "files": ["dist", "README.md", "LICENSE"],
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "test": "vitest run",
24
+ "typecheck": "tsc --noEmit",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "keywords": [
28
+ "http", "http-client", "rest-client", "api-client", "curl", "httpie",
29
+ "postman", "http-file", "rest-file", "api-testing", "http-request", "cli",
30
+ "typescript", "zero-dependency", "fetch", "assertions", "json-path", "ci",
31
+ "smoke-test", "http-runner"
32
+ ],
33
+ "author": "Lacspace <contact@lacspace.com>",
34
+ "license": "SEE LICENSE IN LICENSE",
35
+ "homepage": "https://developer.lacspace.com/tools/http",
36
+ "repository": { "type": "git", "url": "git+https://github.com/lacspace/npm-packages.git", "directory": "lacspace-http" },
37
+ "bugs": { "url": "https://github.com/lacspace/npm-packages/issues" },
38
+ "engines": { "node": ">=20" },
39
+ "dependencies": {},
40
+ "devDependencies": {
41
+ "@types/node": "^20.14.0",
42
+ "tsup": "^8.0.0",
43
+ "typescript": "^5.5.0",
44
+ "vitest": "^2.0.0"
45
+ },
46
+ "publishConfig": { "access": "public" }
47
+ }