-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1004 Bytes
/
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
{
"name": "submitjson",
"type": "module",
"version": "0.10.0",
"description": "JavaScript client for Submit JSON (submitjson.com)",
"author": "Dylan McGowan",
"license": "MIT",
"homepage": "https://www.submitjson.com",
"repository": "https://github.com/dylanmcgowan/submitjson",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm run build && changeset publish",
"typegen": "openapi-typescript http://localhost:4000/v1/docs.json -o ./v1.d.ts",
"test:ts": "tsc --noEmit"
},
"dependencies": {
"openapi-fetch": "^0.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^1.2.1",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.7",
"eslint": "^8.56.0",
"openapi-typescript": "7.0.0-next.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}