-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1017 Bytes
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
{
"name": "@emdash-cms/plugin-emcommerce",
"version": "0.1.0",
"description": "eCommerce plugin for EmDash CMS - WooCommerce ease-of-use with PrestaShop advanced pricing",
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./admin": "./src/admin.tsx",
"./astro": "./src/astro/index.ts",
"./client": "./src/client/index.ts",
"./styles": "./src/styles/emcommerce.css"
},
"files": [
"src"
],
"keywords": [
"emdash",
"cms",
"plugin",
"ecommerce",
"shop",
"store",
"products",
"cart",
"checkout",
"payments",
"stripe",
"paypal"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"@phosphor-icons/react": "^2.1.10",
"astro": ">=6.0.0-beta.0",
"emdash": ">=0.1.0",
"react": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"ulidx": "^2.4.1"
},
"scripts": {
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"astro": "^6.1.3",
"emdash": "^0.1.0",
"react": "^19.2.4"
}
}