shopar-plugin 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -0
- package/README.md +106 -0
- package/dist/env/studio2.hdr +0 -0
- package/dist/shopar-deepar.js +1 -0
- package/dist/shopar-plugin.d.ts +68 -0
- package/dist/shopar-plugin.esm.js +1 -0
- package/dist/shopar-plugin.js +1 -0
- package/dist/shopar-three.js +6 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shopar-plugin",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Plugin for the Web that seamlessly integrates into your webpage to create embedded virtual try-on and 3D preview capabilities.",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"clean": "rm -rf dist",
|
|
7
|
+
"build": "yarn run clean && rollup -c --environment BUILD_PRODUCTION",
|
|
8
|
+
"build-dev": "yarn run clean && rollup -c",
|
|
9
|
+
"generate-version": "node ci/generate-version.js",
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
|
+
"lint": "eslint"
|
|
12
|
+
},
|
|
13
|
+
"main": "dist/shopar-plugin.esm.js",
|
|
14
|
+
"module": "dist/shopar-plugin.esm.js",
|
|
15
|
+
"browser": "dist/shopar-plugin.js",
|
|
16
|
+
"types": "dist/shopar-plugin.d.ts",
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"keywords": [
|
|
21
|
+
"ShopAR",
|
|
22
|
+
"AR",
|
|
23
|
+
"VTO",
|
|
24
|
+
"Virtual try-on",
|
|
25
|
+
"3D preview",
|
|
26
|
+
"360° product viewer",
|
|
27
|
+
"DeepAR"
|
|
28
|
+
],
|
|
29
|
+
"author": "DeepAR",
|
|
30
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"deepar": "5.4.1",
|
|
33
|
+
"three": "0.151.3"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@rollup/plugin-commonjs": "^25.0.4",
|
|
37
|
+
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
38
|
+
"@rollup/plugin-terser": "^0.4.3",
|
|
39
|
+
"@rollup/plugin-typescript": "^11.1.2",
|
|
40
|
+
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
|
|
41
|
+
"@types/three": "0.151.0",
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
|
43
|
+
"@typescript-eslint/parser": "^6.4.1",
|
|
44
|
+
"eslint": "^8.47.0",
|
|
45
|
+
"eslint-config-prettier": "^9.0.0",
|
|
46
|
+
"prettier": "^3.0.2",
|
|
47
|
+
"rollup": "^3.28.1",
|
|
48
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
49
|
+
"rollup-plugin-delete": "^2.0.0",
|
|
50
|
+
"rollup-plugin-dts": "^6.0.0",
|
|
51
|
+
"tslib": "^2.6.2",
|
|
52
|
+
"typescript": "^5.0.4"
|
|
53
|
+
}
|
|
54
|
+
}
|