-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 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
{
"name": "create-typed-sdk",
"version": "0.0.6",
"description": "A library for quickly created SDKs for your Node.js Typescript backends. No build step, no risk of injecting your server code into your frontend, just sweet, sweet DX goodness.",
"main": "./dist/cjs/reactSDK.js",
"module": "./dist/esm/reactSDK.js",
"types": "./dist/esm/reactSDK.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/scottmas/create-typed-sdk.git"
},
"homepage": "https://github.com/scottmas/create-typed-sdk",
"author": "scottmas",
"license": "ISC",
"files": [
"src",
"dist",
"core"
],
"scripts": {
"dev": "run-p dev:*",
"dev:lib": "yarn build && run-p -l 'build:* --watch'",
"dev:example": "cd example-app && yarn dev",
"postprepare": "cd example-app && yarn",
"do-publish": "npm login && npx np",
"test": "echo no-tests",
"build": "run-p build:*",
"build:cjs": "node build.mjs --format cjs --outdir dist/cjs --platform node",
"build:esm": "node build.mjs --format esm --outdir dist/esm --platform browser",
"build:cjs-ts": "tsc --outDir dist/cjs",
"build:esm-ts": "tsc --outDir dist/esm"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"esbuild": "0.13.15",
"eslint": "8.3.0",
"eslint-plugin-react-hooks": "4.3.0",
"np": "7.6.0",
"npm-run-all": "4.1.5",
"react-query": "3.34.7",
"typescript": "4.5.2",
"yargs-parser": "21.0.0"
},
"dependencies": {
"axios": "0.24.0",
"fast-safe-stringify": "2.1.1"
},
"peerDependencies": {
"react-query": "*"
},
"peerDependenciesMeta": {
"react-query": {
"optional": true
}
}
}