-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 2.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@proofgeist/fmdapi",
"version": "4.2.1",
"description": "FileMaker Data API client",
"main": "dist/index.js",
"repository": "[email protected]:proofgeist/fm-dapi.git",
"author": "Eric <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"types": "dist/index.d.ts",
"bin": {
"codegen": "dist/cli.js"
},
"exports": {
".": "./dist/index.js",
"./utils/*": "./dist/utils/*",
"./typegen/*": "./dist/utils/typegen/*",
"./tokenStore/*": "./dist/tokenStore/*",
"./dist/*": "./dist/*",
"./adapters/*": "./dist/adapters/*"
},
"scripts": {
"prepublishOnly": "pnpm run ci",
"build": "tsc",
"check-format": "prettier --check .",
"format": "prettier --write .",
"dev": "tsc --watch",
"ci": "pnpm build && pnpm check-format && pnpm check-exports && pnpm test",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"test": "op inject -i op.env -o .env.local -f && vitest run",
"test:codegen": "op inject -i op.env -o .env.local -f && pnpx tsx ./test/typegen.ts",
"changeset": "changeset",
"release": "pnpm build && changeset publish --access public"
},
"dependencies": {
"@changesets/cli": "^2.27.8",
"chalk": "4.1.2",
"commander": "^9.5.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"fs-extra": "^11.1.1",
"ts-morph": "^24.0.0",
"ts-toolbelt": "^9.6.0"
},
"peerDependencies": {
"zod": ">=3.21.4"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@proofgeist/fm-webviewer-fetch": "^2.1.0",
"@types/fs-extra": "^11.0.3",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.62.0",
"@upstash/redis": "^1.34.1",
"esbuild-runner": "^2.2.2",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1",
"zod": "^3.23.8"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src",
"dist",
"dist-browser",
"tokenStore",
"utils",
"stubs"
],
"keywords": [
"filemaker",
"fms",
"fm",
"data api",
"dapi",
"fmrest",
"fmdapi",
"proofgeist",
"fm-dapi"
]
}