framer-export 5.0.0-beta.2 → 5.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/CHANGELOG.md +33 -0
- package/README.md +102 -14
- package/assets/provider-icons/SOURCES.md +41 -0
- package/dist/cli/index.js +844 -6680
- package/package.json +21 -8
- package/dist/cli/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "framer-export",
|
|
3
|
-
"version": "5.0.
|
|
4
|
-
"description": "Export 25
|
|
3
|
+
"version": "5.0.1",
|
|
4
|
+
"description": "Export public pages from 25 website platforms into local HTML, CSS and assets. Captures dynamic styles, responsive resources and reusable scripts, with diagnostics for incomplete exports.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli/index.js",
|
|
7
|
-
"types": "dist/cli/index.d.ts",
|
|
8
7
|
"bin": {
|
|
9
8
|
"framer-export": "bin/framer-export.js",
|
|
10
9
|
"fexport": "bin/fexport.js",
|
|
@@ -14,17 +13,23 @@
|
|
|
14
13
|
"dist/",
|
|
15
14
|
"bin/",
|
|
16
15
|
"LICENSE",
|
|
17
|
-
"README.md"
|
|
16
|
+
"README.md",
|
|
17
|
+
"CHANGELOG.md",
|
|
18
|
+
"assets/provider-icons/SOURCES.md"
|
|
18
19
|
],
|
|
19
20
|
"scripts": {
|
|
20
21
|
"start": "tsx src/cli/index.ts",
|
|
21
22
|
"dev": "tsx src/cli/index.ts",
|
|
22
23
|
"build": "tsup",
|
|
23
24
|
"test": "node --import tsx --test tests/unit/*.test.ts",
|
|
25
|
+
"test:browser": "node --import tsx --test --test-concurrency=1 tests/integration/*.test.ts",
|
|
26
|
+
"test:platform": "node --import tsx scripts/validate-platform.ts",
|
|
24
27
|
"typecheck": "tsc --noEmit",
|
|
28
|
+
"check": "npm run typecheck && npm test && npm run test:browser",
|
|
29
|
+
"release": "node scripts/release.mjs",
|
|
25
30
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
31
|
+
"prepare": "npm run build",
|
|
32
|
+
"prepublishOnly": "npm run check"
|
|
28
33
|
},
|
|
29
34
|
"keywords": [
|
|
30
35
|
"framer",
|
|
@@ -56,16 +61,24 @@
|
|
|
56
61
|
},
|
|
57
62
|
"license": "MIT",
|
|
58
63
|
"author": "Dany (danbenba)",
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"tag": "latest"
|
|
66
|
+
},
|
|
59
67
|
"engines": {
|
|
60
|
-
"node": ">=
|
|
68
|
+
"node": ">=20.0.0"
|
|
61
69
|
},
|
|
62
70
|
"dependencies": {
|
|
63
71
|
"chalk": "^5.3.0",
|
|
64
72
|
"prettier": "^3.2.0",
|
|
65
|
-
"puppeteer": "^
|
|
73
|
+
"puppeteer": "^24.43.1",
|
|
74
|
+
"string-width": "^7.2.0"
|
|
66
75
|
},
|
|
67
76
|
"devDependencies": {
|
|
68
77
|
"@types/node": "^22.0.0",
|
|
78
|
+
"@xterm/addon-image": "^0.9.0",
|
|
79
|
+
"@xterm/headless": "^6.0.0",
|
|
80
|
+
"@xterm/xterm": "^6.0.0",
|
|
81
|
+
"node-pty": "^1.1.0",
|
|
69
82
|
"tsup": "^8.5.1",
|
|
70
83
|
"tsx": "^4.7.0",
|
|
71
84
|
"typescript": "^5.4.0"
|