-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.47 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.47 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
{
"name": "@chr33s/shoputils",
"version": "1.0.0",
"private": true,
"sideEffects": false,
"type": "module",
"imports": {
"#*": [
"./*"
]
},
"exports": {
"./client/*": {
"import": "./dist/client/*.js",
"types": "./dist/client/*.d.ts"
},
"./server/*": {
"import": "./dist/server/*.js",
"types": "./dist/server/*.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"check": "oxlint --ignore-pattern='**/dist/*' --import-plugin --react-plugin && prettier --check . && tsc --noEmit",
"fix": "oxlint --fix --fix-suggestions --ignore-pattern='**/dist/*' --import-plugin --react-plugin && prettier --write .",
"test": "vitest --run"
},
"peerDependencies": {
"i18next": "^25.0.0",
"jose": "^6.0.0",
"react": "^19.0.0",
"react-router": "^7.0.0"
},
"peerDependenciesMeta": {
"i18next": {
"optional": true
},
"jose": {
"optional": true
},
"react-router": {
"optional": true
}
},
"devDependencies": {
"@cloudflare/workers-types": "4.20251223.0",
"@prettier/plugin-oxc": "0.1.3",
"@remix-run/file-storage": "0.13.0",
"@shopify/app-bridge-types": "0.5.3",
"@types/react": "19.2.7",
"i18next": "25.7.3",
"jose": "6.1.3",
"oxlint": "1.35.0",
"prettier": "3.7.4",
"react": "19.2.3",
"react-router": "7.11.0",
"tsdown": "0.18.2",
"typescript": "5.9.3",
"vite": "7.3.0",
"vitest": "4.0.16"
},
"engines": {
"node": "^22.18.0"
},
"prettier": {
"plugins": [
"@prettier/plugin-oxc"
]
}
}