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
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 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
{
"name": "@titicaca/middlewares",
"version": "14.2.3",
"description": "Triple Web Application Middleware modules",
"license": "MIT",
"homepage": "https://github.com/titicacadev/triple-frontend/tree/main/packages/middleware",
"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": {
"cookie": "^1.0.2",
"semver": "^7.6.3",
"set-cookie-parser": "^2.7.1",
"universal-cookie": "^8.0.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@titicaca/constants": "workspace:*",
"@titicaca/fetcher": "workspace:*",
"@titicaca/triple-web-utils": "workspace:*",
"@titicaca/view-utilities": "workspace:*",
"@types/semver": "^7.5.8",
"@types/set-cookie-parser": "^2.4.10",
"next": "^14.2.24",
"react": "^18.3.1"
},
"peerDependencies": {
"@titicaca/fetcher": "*",
"@titicaca/triple-web-utils": "*",
"next": "^13.4 || ^14.0",
"react": "^18.0"
}
}