-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
53
54
55
56
57
58
{
"name": "httpsnippet-client-api",
"version": "7.0.0-beta.12",
"description": "An HTTPSnippet client for generating snippets for the `api` module.",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"scripts": {
"attw": "attw --pack --format ascii --profile node16",
"build": "tsup",
"lint:types": "tsc --noEmit",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"test": "echo 'Please run tests from the root!' && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/readmeio/api.git",
"directory": "packages/httpsnippet-client-api"
},
"bugs": {
"url": "https://github.com/readmeio/api/issues"
},
"author": "Jon Ursenbach <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=20.10.0"
},
"dependencies": {
"content-type": "^1.0.5",
"reserved2": "^0.1.5"
},
"peerDependencies": {
"@readme/httpsnippet": "^11.0.0",
"oas": "^26.0.1"
},
"devDependencies": {
"@readme/oas-examples": "^5.19.1",
"@types/content-type": "^1.1.8",
"@types/stringify-object": "^4.0.5",
"@vitest/coverage-v8": "^3.0.5",
"camelcase": "^8.0.0",
"jest-expect-openapi": "^2.0.1",
"stringify-object": "^5.0.0",
"typescript": "^5.8.2",
"vitest": "^3.0.4"
},
"prettier": "@readme/eslint-config/prettier"
}