@tryghost/signup-form 0.2.4 → 0.3.2
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/package.json +71 -71
- package/umd/signup-form.min.js +9 -10
- package/umd/signup-form.min.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,73 +1,73 @@
|
|
|
1
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
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
2
|
+
"name": "@tryghost/signup-form",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/TryGhost/Ghost/tree/main/packages/signup-form"
|
|
8
|
+
},
|
|
9
|
+
"author": "Ghost Foundation",
|
|
10
|
+
"files": [
|
|
11
|
+
"LICENSE",
|
|
12
|
+
"README.md",
|
|
13
|
+
"umd/"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"registry": "https://registry.npmjs.org/"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "concurrently \"vite --port 6173\" \"vite preview -l silent\" \"vite build --watch\"",
|
|
21
|
+
"preview": "concurrently \"vite preview -l silent\" \"vite build --watch\"",
|
|
22
|
+
"dev:test": "vite build && vite preview --port 6175",
|
|
23
|
+
"build": "tsc && vite build",
|
|
24
|
+
"lint": "yarn run lint:js",
|
|
25
|
+
"lint:js": "eslint --ext .js,.ts,.cjs,.tsx --cache src test",
|
|
26
|
+
"test:unit": "yarn build",
|
|
27
|
+
"test:e2e": "NODE_OPTIONS='--experimental-specifier-resolution=node --no-warnings' VITE_TEST=true playwright test",
|
|
28
|
+
"test:slowmo": "TIMEOUT=100000 PLAYWRIGHT_SLOWMO=100 yarn test:e2e --headed",
|
|
29
|
+
"test:e2e:full": "ALL_BROWSERS=1 yarn test:e2e",
|
|
30
|
+
"storybook": "storybook dev -p 6006",
|
|
31
|
+
"build-storybook": "storybook build",
|
|
32
|
+
"preship": "yarn lint",
|
|
33
|
+
"ship": "node ../../.github/scripts/release-apps.js",
|
|
34
|
+
"postship": "git push ${GHOST_UPSTREAM:-origin} --follow-tags && npm publish",
|
|
35
|
+
"prepublishOnly": "yarn build"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"react": "18.3.1",
|
|
39
|
+
"react-dom": "18.3.1"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@playwright/test": "1.54.1",
|
|
43
|
+
"@storybook/addon-essentials": "8.6.14",
|
|
44
|
+
"@storybook/addon-interactions": "8.6.14",
|
|
45
|
+
"@storybook/addon-links": "8.6.14",
|
|
46
|
+
"@storybook/addon-styling": "1.3.7",
|
|
47
|
+
"@storybook/blocks": "8.6.14",
|
|
48
|
+
"@storybook/react": "8.6.14",
|
|
49
|
+
"@storybook/react-vite": "8.6.14",
|
|
50
|
+
"@storybook/testing-library": "0.2.2",
|
|
51
|
+
"@tailwindcss/line-clamp": "0.4.4",
|
|
52
|
+
"@tryghost/i18n": "0.0.0",
|
|
53
|
+
"@types/react": "18.3.23",
|
|
54
|
+
"@types/react-dom": "18.3.7",
|
|
55
|
+
"@vitejs/plugin-react": "4.7.0",
|
|
56
|
+
"autoprefixer": "10.4.21",
|
|
57
|
+
"concurrently": "8.2.2",
|
|
58
|
+
"eslint-plugin-react-hooks": "4.6.2",
|
|
59
|
+
"eslint-plugin-react-refresh": "0.4.20",
|
|
60
|
+
"eslint-plugin-tailwindcss": "3.18.2",
|
|
61
|
+
"jsdom": "24.1.3",
|
|
62
|
+
"postcss": "8.5.6",
|
|
63
|
+
"postcss-import": "16.1.1",
|
|
64
|
+
"prop-types": "15.8.1",
|
|
65
|
+
"rollup-plugin-node-builtins": "2.1.2",
|
|
66
|
+
"storybook": "8.6.14",
|
|
67
|
+
"stylelint": "15.11.0",
|
|
68
|
+
"tailwindcss": "3.4.17",
|
|
69
|
+
"vite": "5.4.19",
|
|
70
|
+
"vite-plugin-svgr": "3.3.0",
|
|
71
|
+
"vitest": "1.6.1"
|
|
72
|
+
}
|
|
73
73
|
}
|