-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 897 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
{
"name": "fooddata-central-api",
"license": "MIT",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsup index.ts --format cjs,esm --dts",
"build": "tsup index.ts --format cjs,esm --dts",
"test": "npx tap --node-arg=--require=ts-node/register",
"gen-test-snapshot": "npx tap --node-arg=--require=ts-node/register --snapshot",
"lint": "tsc",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.16.5",
"@types/tap": "^15.0.8",
"dotenv": "^16.0.3",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"ts-to-zod": "^3.0.0",
"tsup": "^6.7.0",
"typedoc": "^0.24.6",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.0.4"
},
"dependencies": {
"zod": "^3.21.4"
}
}