-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.72 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.72 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
{
"name": "up-yeah-nah",
"version": "0.0.3",
"description": "A Typescript API client and a bunch of reusable Zod schemas for the UP Bank customer API",
"keywords": [
"up bank api",
"typescript",
"zod",
"ts-rest"
],
"repository": {
"type": "git",
"url": "https://github.com/sambauers/up-yeah-nah.git"
},
"homepage": "https://github.com/sambauers/up-yeah-nah",
"license": "MIT",
"packageManager": "pnpm@10.13.1",
"scripts": {
"lint": "eslint",
"clean": "rm -rf dist",
"clean:scripts": "rm -rf ./build/scripts",
"compile": "swc ./src --out-dir ./dist --strip-leading-paths",
"compile:scripts": "swc ./scripts --out-dir ./build/scripts --strip-leading-paths",
"build": "pnpm clean && pnpm compile",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"copy-release-files": "pnpm clean:scripts && pnpm compile:scripts && node ./build/scripts/copy-release-files.js && pnpm clean:scripts",
"package": "pnpm lint && pnpm build && pnpm build:types && pnpm run copy-release-files",
"release": "pnpm package && pnpm publish dist"
},
"dependencies": {
"@swc/helpers": "0.5.17",
"@ts-rest/core": "3.53.0-rc.1",
"common-tags": "1.8.2",
"temporal-polyfill": "0.3.0",
"zod": "4.0.10"
},
"devDependencies": {
"@eslint/js": "9.32.0",
"@swc/cli": "0.7.8",
"@swc/core": "1.13.2",
"@tsconfig/node24": "24.0.1",
"@types/common-tags": "1.8.4",
"@types/node": "24.1.0",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-prettier": "5.5.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"typescript": "5.8.3",
"typescript-eslint": "8.38.0"
}
}