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
65 lines (65 loc) · 1.66 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.66 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
{
"name": "@titicaca/triple-web-nextjs-pages",
"version": "14.2.3",
"license": "MIT",
"homepage": "https://github.com/titicacadev/triple-frontend/tree/main/packages/triple-web-nextjs-pages",
"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",
"middleware.d.ts",
"middleware.js"
],
"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": {
"@titicaca/constants": "workspace:*",
"@titicaca/fetcher": "workspace:*",
"@titicaca/triple-web-utils": "workspace:*",
"@titicaca/view-utilities": "workspace:*",
"qs": "^6.14.0",
"ua-parser-js": "^1.0.40",
"universal-cookie": "^8.0.1"
},
"devDependencies": {
"@titicaca/triple-web": "workspace:*",
"@types/qs": "^6.9.18",
"@types/ua-parser-js": "^0.7.39",
"next": "^14.2.24",
"react": "^18.3.1"
},
"peerDependencies": {
"@titicaca/triple-web": "*",
"next": "^13.4 || ^14.0",
"react": "^18.0"
}
}