This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.76 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.76 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
88
89
90
91
92
93
{
"name": "@titicaca/tds-widget",
"version": "14.0.11",
"description": "TDS widget",
"license": "MIT",
"homepage": "https://github.com/titicacadev/triple-frontend/tree/main/packages/tds-widget",
"repository": {
"type": "git",
"url": "git+https://github.com/titicacadev/triple-frontend.git"
},
"bugs": {
"url": "https://github.com/titicacadev/triple-frontend/issues"
},
"sideEffects": false,
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts"
},
"files": [
"lib"
],
"scripts": {
"build": "vite build",
"lint:es": "eslint src",
"lint:es:fix": "eslint src --fix",
"lint:style": "stylelint 'src/**/*.{js,ts,tsx}'",
"lint:style:fix": "stylelint 'src/**/*.{js,ts,tsx}' --fix",
"lint:etc": "prettier src --check",
"lint:etc:fix": "prettier src --write"
},
"lint-staged": {
"*": [
"prettier --check"
],
"*.{js,ts,tsx}": [
"eslint"
]
},
"dependencies": {
"@egjs/flicking": "^3.9.3",
"@egjs/react-flicking": "^3.8.3",
"@floating-ui/react": "^0.27.4",
"@react-google-maps/api": "^2.20.6",
"@titicaca/fetcher": "workspace:*",
"@titicaca/intersection-observer": "workspace:*",
"@titicaca/react-hooks": "workspace:*",
"@titicaca/router": "workspace:*",
"@titicaca/tds-ui": "workspace:*",
"@titicaca/triple-web": "workspace:*",
"@titicaca/triple-web-to-native-interfaces": "1.10.0",
"@titicaca/type-definitions": "workspace:*",
"@titicaca/view-utilities": "workspace:*",
"autolinker": "^4.1.0",
"graphql": "^16.10.0",
"graphql-request": "^6.1.0",
"date-fns": "^3.6.0",
"moment": "^2.30.1",
"react-intersection-observer": "^9.13.1",
"qs": "^6.14.0",
"react-day-picker": "^7.4.10",
"react-transition-group": "^4.4.5",
"react-zoom-pan-pinch": "^3.6.1",
"scroll-to-element": "^2.0.3",
"use-long-press": "^3.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.5",
"@graphql-codegen/typescript": "4.1.5",
"@graphql-codegen/typescript-generic-sdk": "^4.0.1",
"@graphql-codegen/typescript-operations": "4.5.1",
"@tanstack/react-query": "^5.67.2",
"@titicaca/tds-theme": "workspace:*",
"@titicaca/triple-web": "workspace:*",
"@titicaca/triple-web-test-utils": "workspace:*",
"@types/qs": "^6.9.18",
"@types/react-transition-group": "^4.4.12",
"csstype": "^3.1.3",
"react": "^18.3.1",
"styled-components": "^6.1.15",
"utility-types": "^3.11.0"
},
"peerDependencies": {
"@tanstack/react-query": "^5",
"@titicaca/tds-theme": "*",
"@titicaca/triple-web": "*",
"react": "^18.0",
"styled-components": "^6.0"
}
}