-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.22 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@peektravel/app-utilities",
"version": "0.2.4",
"description": "GraphQL JS mapping utilities extracted from the Peek Pro Autopilot connector.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/peek-travel/app-utilities.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./ui": {
"import": {
"types": "./dist/ui/index.d.ts",
"default": "./dist/ui/index.js"
},
"require": {
"types": "./dist/ui/index.d.cts",
"default": "./dist/ui/index.cjs"
}
},
"./ui/odyssey.css": "./dist/ui/odyssey.css",
"./ui/tokens.css": "./dist/ui/tokens.css",
"./package.json": "./package.json"
},
"files": [
"dist",
"llms.txt",
"docs/ui.md",
"docs/webhooks.md"
],
"sideEffects": [
"**/ui/**",
"**/*.css"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"sample": "tsup && node scripts/serve-examples.mjs",
"clean": "rm -rf dist coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check:exports": "attw --pack . --profile node16 --exclude-entrypoints ui/odyssey.css ui/tokens.css",
"check:publint": "publint",
"prepublishOnly": "npm run build && npm run check:publint && npm run check:exports"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^9.34.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.18.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.34.0",
"happy-dom": "^15.11.7",
"publint": "^0.3.14",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.40.0",
"vitest": "^4.1.8"
}
}