unframer 3.2.16 → 3.2.17
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/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/esm/version.d.ts +1 -1
- package/esm/version.js +1 -1
- package/package.json +91 -90
- package/src/version.ts +1 -1
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "3.2.
|
|
1
|
+
export declare const version = "3.2.17";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/esm/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "3.2.
|
|
1
|
+
export declare const version = "3.2.17";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '3.2.
|
|
1
|
+
export const version = '3.2.17';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,96 +1,97 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"esm"
|
|
15
|
-
],
|
|
16
|
-
"types": "./dist/index.d.ts",
|
|
17
|
-
"exports": {
|
|
18
|
-
".": {
|
|
19
|
-
"types": "./dist/index.d.ts",
|
|
20
|
-
"module": "./esm/index.js",
|
|
21
|
-
"default": "./dist/index.js"
|
|
2
|
+
"name": "unframer",
|
|
3
|
+
"version": "3.2.17",
|
|
4
|
+
"description": "Import Framer components directly in your React app, type safe and customizable",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"repository": "https://github.com/remorses/unframer",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rm -rf dist esm && pnpm tsc -m esnext --moduleResolution node --outDir esm && pnpm tsc && echo copying && cp ../README.md ./README.md && cp ./src/framer.d.ts ./dist/framer.d.ts && cp ./src/framer.d.ts ./esm/framer.d.ts && cp ./src/framer.js ./dist/framer.js && cp ./src/framer.js ./esm/framer.js && cp -r ./src/framer-chunks ./dist/framer-chunks && cp -r ./src/framer-chunks ./esm/framer-chunks",
|
|
9
|
+
"test": "vitest",
|
|
10
|
+
"gen-client": "export DIR=./src/generated/ && cd ../../website && pnpm tsc; rm -rf $DIR && mkdir -p $DIR && cp ./dist/src/lib/api-client.* $DIR",
|
|
11
|
+
"prepublishOnly": "pnpm tsx scripts/version-replace.ts && pnpm build",
|
|
12
|
+
"download-framer": "tsx scripts/download.ts",
|
|
13
|
+
"watch": "rm -rf dist esm && pnpm concurrently 'pnpm tsc -w' 'pnpm tsc -m esnext --moduleResolution node --outDir esm --watch'"
|
|
22
14
|
},
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
15
|
+
"bin": "bin.js",
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"framer-fixed",
|
|
19
|
+
"bin.js",
|
|
20
|
+
"src",
|
|
21
|
+
"README.md",
|
|
22
|
+
"esm"
|
|
23
|
+
],
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"module": "./esm/index.js",
|
|
29
|
+
"default": "./dist/index.js"
|
|
30
|
+
},
|
|
31
|
+
"./src/framer.js": {
|
|
32
|
+
"types": "./dist/framer.d.ts",
|
|
33
|
+
"default": "./src/framer.js"
|
|
34
|
+
},
|
|
35
|
+
"./dist/exporter": {
|
|
36
|
+
"types": "./dist/exporter.d.ts",
|
|
37
|
+
"module": "./esm/exporter.js",
|
|
38
|
+
"default": "./dist/exporter.js"
|
|
39
|
+
},
|
|
40
|
+
"./styles/*": {
|
|
41
|
+
"default": "./src/styles/*"
|
|
42
|
+
},
|
|
43
|
+
"./src/*": {
|
|
44
|
+
"default": "./src/*.ts"
|
|
45
|
+
},
|
|
46
|
+
"./package.json": "./package.json"
|
|
26
47
|
},
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
48
|
+
"keywords": [],
|
|
49
|
+
"author": "Tommaso De Rossi, morse <beats.by.morse@gmail.com>",
|
|
50
|
+
"license": "",
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"react": "*",
|
|
53
|
+
"react-dom": "*"
|
|
31
54
|
},
|
|
32
|
-
"
|
|
33
|
-
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18.0.0"
|
|
34
57
|
},
|
|
35
|
-
"
|
|
36
|
-
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@antfu/ni": "^25.0.0",
|
|
60
|
+
"@babel/core": "^7.26.7",
|
|
61
|
+
"@biomejs/js-api": "^0.7.1",
|
|
62
|
+
"@biomejs/wasm-nodejs": "^1.9.4",
|
|
63
|
+
"async-sema": "^3.1.1",
|
|
64
|
+
"cac": "^6.7.14",
|
|
65
|
+
"esbuild": "^0.25.8",
|
|
66
|
+
"esbuild-plugins-node-modules-polyfill": "^1.6.8",
|
|
67
|
+
"nanospinner": "^1.2.2",
|
|
68
|
+
"picocolors": "^1.1.1",
|
|
69
|
+
"real-framer-motion": "npm:framer-motion@^12.23.12",
|
|
70
|
+
"spiceflow": "^1.17.10",
|
|
71
|
+
"string-dedent": "^3.0.1",
|
|
72
|
+
"undici": "^7.10.0"
|
|
37
73
|
},
|
|
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
|
-
"spiceflow": "^1.17.10",
|
|
63
|
-
"string-dedent": "^3.0.1",
|
|
64
|
-
"undici": "^7.10.0"
|
|
65
|
-
},
|
|
66
|
-
"devDependencies": {
|
|
67
|
-
"@babel/helper-annotate-as-pure": "^7.25.9",
|
|
68
|
-
"@babel/helper-environment-visitor": "^7.24.7",
|
|
69
|
-
"@babel/helper-split-export-declaration": "^7.24.7",
|
|
70
|
-
"@babel/plugin-transform-react-pure-annotations": "^7.25.9",
|
|
71
|
-
"@babel/traverse": "^7.26.7",
|
|
72
|
-
"@babel/types": "^7.26.7",
|
|
73
|
-
"@types/babel__core": "^7.20.5",
|
|
74
|
-
"@types/babel__traverse": "^7.20.6",
|
|
75
|
-
"@types/bun": "^1.1.6",
|
|
76
|
-
"@types/node": "^22.15.21",
|
|
77
|
-
"@types/react": "^19.1.8",
|
|
78
|
-
"@types/react-dom": "^19.1.5",
|
|
79
|
-
"@xmorse/deployment-utils": "^0.7.1",
|
|
80
|
-
"concurrently": "^9.1.2",
|
|
81
|
-
"dprint-node": "^1.0.8",
|
|
82
|
-
"openai": "^4.80.1",
|
|
83
|
-
"posthtml": "^0.16.6",
|
|
84
|
-
"react": "19.1.0",
|
|
85
|
-
"react-dom": "19.1.0",
|
|
86
|
-
"tiktoken": "^1.0.18",
|
|
87
|
-
"typescript": "^5.9.3"
|
|
88
|
-
},
|
|
89
|
-
"scripts": {
|
|
90
|
-
"build": "rm -rf dist esm && pnpm tsc -m esnext --moduleResolution node --outDir esm && pnpm tsc && echo copying && cp ../README.md ./README.md && cp ./src/framer.d.ts ./dist/framer.d.ts && cp ./src/framer.d.ts ./esm/framer.d.ts && cp ./src/framer.js ./dist/framer.js && cp ./src/framer.js ./esm/framer.js && cp -r ./src/framer-chunks ./dist/framer-chunks && cp -r ./src/framer-chunks ./esm/framer-chunks",
|
|
91
|
-
"test": "vitest",
|
|
92
|
-
"gen-client": "export DIR=./src/generated/ && cd ../../website && pnpm tsc; rm -rf $DIR && mkdir -p $DIR && cp ./dist/src/lib/api-client.* $DIR",
|
|
93
|
-
"download-framer": "tsx scripts/download.ts",
|
|
94
|
-
"watch": "rm -rf dist esm && pnpm concurrently 'pnpm tsc -w' 'pnpm tsc -m esnext --moduleResolution node --outDir esm --watch'"
|
|
95
|
-
}
|
|
96
|
-
}
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@babel/helper-annotate-as-pure": "^7.25.9",
|
|
76
|
+
"@babel/helper-environment-visitor": "^7.24.7",
|
|
77
|
+
"@babel/helper-split-export-declaration": "^7.24.7",
|
|
78
|
+
"@babel/plugin-transform-react-pure-annotations": "^7.25.9",
|
|
79
|
+
"@babel/traverse": "^7.26.7",
|
|
80
|
+
"@babel/types": "^7.26.7",
|
|
81
|
+
"@types/babel__core": "^7.20.5",
|
|
82
|
+
"@types/babel__traverse": "^7.20.6",
|
|
83
|
+
"@types/bun": "^1.1.6",
|
|
84
|
+
"@types/node": "^22.15.21",
|
|
85
|
+
"@types/react": "^19.1.8",
|
|
86
|
+
"@types/react-dom": "^19.1.5",
|
|
87
|
+
"@xmorse/deployment-utils": "^0.7.1",
|
|
88
|
+
"concurrently": "^9.1.2",
|
|
89
|
+
"dprint-node": "^1.0.8",
|
|
90
|
+
"openai": "^4.80.1",
|
|
91
|
+
"posthtml": "^0.16.6",
|
|
92
|
+
"react": "19.1.0",
|
|
93
|
+
"react-dom": "19.1.0",
|
|
94
|
+
"tiktoken": "^1.0.18",
|
|
95
|
+
"typescript": "^5.9.3"
|
|
96
|
+
}
|
|
97
|
+
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '3.2.
|
|
1
|
+
export const version = '3.2.17'
|