aw-wizard-forms 3.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/README.md +189 -0
- package/dist/wizard-form.esm.js +5306 -0
- package/dist/wizard-form.esm.js.map +1 -0
- package/dist/wizard-form.min.js +1253 -0
- package/dist/wizard-form.min.js.map +1 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aw-wizard-forms",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "A lightweight, Typeform-style multi-step form web component for Webflow + HubSpot integration",
|
|
5
|
+
"main": "dist/wizard-form.min.js",
|
|
6
|
+
"module": "dist/wizard-form.esm.js",
|
|
7
|
+
"browser": "dist/wizard-form.min.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/wizard-form.esm.js",
|
|
12
|
+
"require": "./dist/wizard-form.min.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite --config vite.config.mts",
|
|
21
|
+
"build": "tsc && vite build --config vite.config.mts",
|
|
22
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"test": "vitest",
|
|
25
|
+
"test:ui": "vitest --ui",
|
|
26
|
+
"test:run": "vitest run",
|
|
27
|
+
"test:coverage": "vitest run --coverage",
|
|
28
|
+
"test:e2e": "playwright test",
|
|
29
|
+
"lint": "eslint src --ext .ts",
|
|
30
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
31
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
32
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
33
|
+
"typecheck": "tsc --noEmit",
|
|
34
|
+
"size": "yarn build && gzip -c dist/wizard-form.min.js | wc -c",
|
|
35
|
+
"storybook": "storybook dev -p 6006",
|
|
36
|
+
"build-storybook": "storybook build -o storybook-static",
|
|
37
|
+
"test:storybook": "test-storybook"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"form",
|
|
41
|
+
"wizard",
|
|
42
|
+
"multi-step",
|
|
43
|
+
"typeform",
|
|
44
|
+
"hubspot",
|
|
45
|
+
"webflow",
|
|
46
|
+
"web-component",
|
|
47
|
+
"custom-element",
|
|
48
|
+
"lit",
|
|
49
|
+
"lightweight"
|
|
50
|
+
],
|
|
51
|
+
"author": "Atomicwork",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "https://github.com/atomicworkhq/aw-wizard-forms.git"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@open-wc/testing": "^4.0.0",
|
|
59
|
+
"@playwright/test": "^1.40.0",
|
|
60
|
+
"@storybook/addon-a11y": "^8",
|
|
61
|
+
"@storybook/addon-essentials": "^8",
|
|
62
|
+
"@storybook/addon-interactions": "^8",
|
|
63
|
+
"@storybook/addon-themes": "^8",
|
|
64
|
+
"@storybook/blocks": "^8",
|
|
65
|
+
"@storybook/test": "^8",
|
|
66
|
+
"@storybook/test-runner": "^0.19",
|
|
67
|
+
"@storybook/web-components-vite": "^8",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
69
|
+
"@typescript-eslint/parser": "^8.50.1",
|
|
70
|
+
"@vitest/coverage-v8": "^1.0.0",
|
|
71
|
+
"@vitest/ui": "^1.0.0",
|
|
72
|
+
"concurrently": "^9.2.1",
|
|
73
|
+
"eslint": "^8.55.0",
|
|
74
|
+
"eslint-config-prettier": "^9.1.0",
|
|
75
|
+
"eslint-plugin-import": "^2.29.0",
|
|
76
|
+
"http-server": "^14.1.1",
|
|
77
|
+
"jsdom": "^27.3.0",
|
|
78
|
+
"prettier": "^3.1.0",
|
|
79
|
+
"serve": "^14.2.5",
|
|
80
|
+
"storybook": "^8",
|
|
81
|
+
"terser": "^5.44.1",
|
|
82
|
+
"typescript": "^5.9.3",
|
|
83
|
+
"vite": "^5.0.0",
|
|
84
|
+
"vitest": "^1.0.0",
|
|
85
|
+
"wait-on": "^9.0.3"
|
|
86
|
+
},
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"@webflow/webflow-cli": "^1.10.0",
|
|
89
|
+
"lit": "^3.3.1"
|
|
90
|
+
},
|
|
91
|
+
"engines": {
|
|
92
|
+
"node": ">=18.0.0"
|
|
93
|
+
}
|
|
94
|
+
}
|