-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
90 lines (90 loc) · 2.09 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
89
90
{
"name": "@proofgeist/fmdapi",
"version": "3.5.0",
"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": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dist/wv": {
"import": "./dist/wv.js",
"types": "./dist/wv.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
},
"./dist/tokenStore/*.js": "./dist/tokenStore/*.js",
"./dist/tokenStore/*": "./dist/tokenStore/*",
"./dist/*": "./dist/*"
},
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc",
"test": "op inject -i op.env -o .env.local -f && jest",
"changeset": "changeset",
"release": "pnpm build && changeset publish --access public"
},
"dependencies": {
"@changesets/cli": "^2.26.1",
"chalk": "4.1.2",
"commander": "^9.5.0",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"fs-extra": "^11.1.1",
"ts-toolbelt": "^9.6.0"
},
"peerDependencies": {
"zod": ">=3.21.4"
},
"devDependencies": {
"@jest/types": "28.1.3",
"@proofgeist/fm-webviewer-fetch": "^2.1.0",
"@types/fs-extra": "^11.0.3",
"@types/jest": "^28.1.8",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.62.0",
"@upstash/redis": "^1.30.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"jest": "^28.1.3",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"zod": "^3.23.8"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src",
"dist",
"dist-browser",
"tokenStore",
"utils",
"stubs"
],
"keywords": [
"filemaker",
"fms",
"data api",
"dapi",
"fmrest",
"fmdapi",
"proofgeist",
"fm-dapi"
]
}