@reframejs/cli 0.1.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/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@reframejs/cli",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "Export selected Framer components into readable, AI-friendly React and CSS source.",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Elixir-Piloting/reframe.git",
11
+ "directory": "framer-source-exporter"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/Elixir-Piloting/reframe/issues"
15
+ },
16
+ "homepage": "https://github.com/Elixir-Piloting/reframe#readme",
17
+ "files": [
18
+ "dist/cli.js",
19
+ "dist/framer-source-export.js",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "engines": {
27
+ "node": ">=22"
28
+ },
29
+ "scripts": {
30
+ "dev": "vite",
31
+ "build": "vite build && pnpm run build:cli",
32
+ "build:cli": "node scripts/build-cli.mjs",
33
+ "export": "node bin/framer-source-export.js",
34
+ "create-app": "node bin/framer-source-export.js create-app",
35
+ "sync": "node bin/framer-source-export.js sync",
36
+ "module": "node bin/framer-source-export.js module",
37
+ "serve": "node bin/framer-source-export.js serve",
38
+ "export:api": "node bin/framer-server-export.js",
39
+ "test": "node --test tests/generator.test.js tests/snapshot.test.js tests/module-export.test.js tests/reframe-utils.test.js",
40
+ "format": "prettier --write ."
41
+ },
42
+ "bin": {
43
+ "reframe": "dist/cli.js"
44
+ },
45
+ "dependencies": {
46
+ "@babel/generator": "^7.29.8",
47
+ "@babel/parser": "^7.29.8",
48
+ "@babel/traverse": "^7.29.8",
49
+ "@babel/types": "^7.29.8",
50
+ "@framer/plugin": "^5.0.0",
51
+ "@phosphor-icons/web": "^2.1.2",
52
+ "commander": "^14.0.0",
53
+ "esbuild": "^0.28.2",
54
+ "fflate": "^0.8.3",
55
+ "framer-api": "^5.0.0",
56
+ "prettier": "^3.6.2",
57
+ "react": "^19.2.0",
58
+ "react-dom": "^19.2.0",
59
+ "unframer": "^4.2.0"
60
+ },
61
+ "devDependencies": {
62
+ "javascript-obfuscator": "^4.1.1",
63
+ "vite": "^7.1.3",
64
+ "vite-plugin-framer": "^1.1.1",
65
+ "vite-plugin-mkcert": "^2.1.0"
66
+ }
67
+ }