generated from vendure-ecommerce/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 KB
/
package.json
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
{
"name": "vendure-plugin-multi-channel-seller",
"version": "0.2.0",
"description": "Allows channels to have multiple sellers, variants to have prices from different sellers on same channel",
"author": "ARRRRNY",
"repository": "https://github.com/arrrrny/vendure-plugin-multi-channel-seller",
"license": "GPL-3.0-or-later",
"private": false,
"engines": {
"node": ">=20.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"start": "ts-node test/dev-server.ts",
"build": "rimraf dist && tsc",
"test": "vitest"
},
"devDependencies": {
"@swc/core": "^1.7.1",
"@vendure/admin-ui-plugin": "3.0.1",
"@vendure/asset-server-plugin": "3.0.1",
"@vendure/cli": "^3.0.1",
"@vendure/core": "3.0.1",
"@vendure/testing": "3.0.1",
"@vendure/ui-devkit": "3.0.1",
"graphql-tag": "^2.12.6",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"unplugin-swc": "^1.5.1",
"vitest": "^2.0.4"
},
"dependencies": {
"base64url": "^3.0.1"
},
"keywords": [
"vendure",
"plugin",
"marketplace",
"seller",
"multi-seller",
"channel"
]
}