-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.78 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@godaddy/app-connect",
"version": "1.0.1",
"description": "GoDaddy App Connect - A verification library for GoDaddy Platform App requests",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./express": {
"types": "./dist/express/index.d.ts",
"import": "./dist/express/index.js",
"default": "./dist/express/index.js"
},
"./next": {
"types": "./dist/next/index.d.ts",
"import": "./dist/next/index.js",
"default": "./dist/next/index.js"
},
"./tanstack": {
"types": "./dist/tanstack/index.d.ts",
"import": "./dist/tanstack/index.js",
"default": "./dist/tanstack/index.js"
}
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"typecheck": "tsc --noEmit",
"lint": "biome lint --write --unsafe ./src",
"check": "biome check --write --unsafe ./src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"release": "pnpm build && changeset publish",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"godaddy",
"platform",
"verification",
"signature"
],
"author": "GoDaddy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/godaddy/javascript.git"
},
"dependencies": {
"@tanstack/react-router": "^1.127.9",
"@tanstack/react-start": "^1.127.9",
"pino": "^9.7.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@changesets/cli": "^2.29.4",
"@types/express": "^5.0.2",
"@types/node": "^22.13.1",
"pino-pretty": "^13.0.0",
"tsdown": "^0.15.6",
"typescript": "~5.7.3",
"vitest": "^4.1.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}