forked from miguelgargallo/storeos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.46 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.46 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
94
95
96
97
98
99
100
{
"name": "storeos",
"version": "1.0.7",
"description": "storeOS - A library for building ecommerce fully opensource stores with Stripe integration.",
"type": "module",
"license": "Pylar AI Creative ML Free License",
"keywords": [
"store",
"shop",
"shopping",
"next.js",
"react",
"stripe"
],
"$schema": "https://json.schemastore.org/package",
"author": {
"name": "Pencil Works, LLC",
"email": "noreply@itamaesan.org",
"url": "https://itamaesan.org"
},
"repository": {
"type": "git",
"url": "https://github.com/itamaesanorg/storeos.git"
},
"bugs": {
"url": "https://github.com/itamaesanorg/storeos/issues"
},
"homepage": "https://github.com/itamaesanorg/storeos#readme",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./divisas": {
"import": "./dist/divisas.js",
"types": "./dist/divisas.d.ts"
},
"./internal": {
"import": "./dist/internal.js",
"types": "./dist/internal.d.ts"
},
"./sk": {
"import": "./dist/sk.js",
"types": "./dist/sk.d.ts"
},
"./db": {
"import": "./dist/db.js",
"types": "./dist/db.d.ts"
}
},
"files": [
"package.json",
"dist",
"README.md",
"LICENSE.md"
],
"sideEffects": false,
"devDependencies": {
"@neondatabase/serverless": "0.10.4",
"@types/node": "22.13.1",
"@types/react": "19.0.8 || 19.1.6",
"@types/react-dom": "19.0.3 || 19.1.5",
"next": "15.1.6",
"prettier": "3.4.2",
"react": "19.0.0 || 19.1.0",
"react-dom": "19.0.0 || 19.1.0",
"rimraf": "6.0.1",
"server-only": "0.0.1",
"stripe": "17.6.0",
"tsup": "8.3.6",
"tsx": "4.19.2",
"vitest": "3.0.5",
"zod": "3.24.1 || 3.25.42"
},
"peerDependencies": {
"@neondatabase/serverless": "0.9.4",
"@types/node": "20 || 22",
"@types/react": "19.0.8 || 19.1.6",
"@types/react-dom": "19.0.3 || 19.1.5",
"next": "15.1.6",
"react": "19.0.0 || 19.1.0",
"react-dom": "19.0.0 || 19.1.0",
"server-only": "0.0.1",
"stripe": "17",
"typescript": "5.5.4 || 5.8.3",
"zod": "3.23.8"
},
"peerDependencyRules": {
"allowedVersions": {
"react": "19 || 19.1",
"react-dom": "19 || 19.1"
}
},
"scripts": {
"build": "rimraf dist/* && tsup --config tsup.config.ts",
"dev": "tsup --config tsup.config.ts --watch",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx"
}
}