xactsize-webcomponents 1.0.0
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.md +18 -0
- package/README.md +30 -0
- package/dist/body-measurer.d.ts +75 -0
- package/dist/body-measurer.es.js +1317 -0
- package/dist/body-measurer.umd.js +591 -0
- package/package.json +38 -0
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "xactsize-webcomponents",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A web component for body measurements and size recommendations",
|
|
5
|
+
"main": "dist/body-measurer.umd.js",
|
|
6
|
+
"module": "dist/body-measurer.es.js",
|
|
7
|
+
"types": "dist/body-measurer.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/body-measurer.d.ts",
|
|
11
|
+
"import": "./dist/body-measurer.es.js",
|
|
12
|
+
"require": "./dist/body-measurer.umd.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/",
|
|
17
|
+
"LICENSE.md",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"start": "vite",
|
|
22
|
+
"build": "vite build",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"prepublishOnly": "npm run build",
|
|
25
|
+
"link": "npm link"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"lit": "^3.2.1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"vite": "^6.2.3",
|
|
32
|
+
"vite-plugin-dts": "^4.5.3",
|
|
33
|
+
"typescript": "^5.0.0"
|
|
34
|
+
},
|
|
35
|
+
"keywords": ["web-component", "lit", "body-measurement", "ecommerce"],
|
|
36
|
+
"author": "Your Name",
|
|
37
|
+
"license": "SEE LICENSE IN LICENSE.md"
|
|
38
|
+
}
|