@editframe/create 0.6.0-beta.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/build.sh +0 -0
- package/dist/index.cjs +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +13 -0
- package/dist/project-template/index.html +31 -0
- package/dist/project-template/package-lock.json +3030 -0
- package/dist/project-template/package.json +21 -0
- package/dist/project-template/src/assets/.gitkeep +0 -0
- package/dist/project-template/src/assets/bars-n-tone.mp4 +0 -0
- package/dist/project-template/src/assets/editframe.png +0 -0
- package/dist/project-template/src/index.js +2 -0
- package/dist/project-template/src/styles.css +30 -0
- package/dist/project-template/tailwind.config.js +8 -0
- package/package copy.json +15 -0
- package/package.json +24 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "card-demo",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [],
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@editframe/cli": "^0.5.0-beta.9",
|
|
15
|
+
"@editframe/elements": "^0.5.0-beta.9",
|
|
16
|
+
"@editframe/vite-plugin": "^0.5.0-beta.9",
|
|
17
|
+
"tailwindcss": "^3.4.3",
|
|
18
|
+
"vite": "^5.2.11",
|
|
19
|
+
"vite-plugin-singlefile": "^2.0.1"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
|
4
|
+
|
|
5
|
+
@keyframes slide-up {
|
|
6
|
+
from {
|
|
7
|
+
transform: translateY(100%);
|
|
8
|
+
}
|
|
9
|
+
to {
|
|
10
|
+
transform: translateY(0);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@keyframes fade-in {
|
|
15
|
+
from {
|
|
16
|
+
opacity: 0;
|
|
17
|
+
}
|
|
18
|
+
to {
|
|
19
|
+
opacity: 1;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@keyframes spin {
|
|
24
|
+
from {
|
|
25
|
+
transform: rotate(0deg);
|
|
26
|
+
}
|
|
27
|
+
to {
|
|
28
|
+
transform: rotate(360deg);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@editframe/elements",
|
|
3
|
+
"version": "0.5.0-beta.8",
|
|
4
|
+
"description": "",
|
|
5
|
+
"exports": {},
|
|
6
|
+
"scripts": {},
|
|
7
|
+
"author": "",
|
|
8
|
+
"license": "UNLICENSED",
|
|
9
|
+
"dependencies": {},
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"autoprefixer": "^10.4.19",
|
|
12
|
+
"rollup-plugin-tsconfig-paths": "^1.5.2",
|
|
13
|
+
"vite-tsconfig-paths": "^4.3.2"
|
|
14
|
+
}
|
|
15
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@editframe/create",
|
|
3
|
+
"version": "0.6.0-beta.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"bin": {
|
|
6
|
+
"create-editframe": "dist/index.js"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "index.js",
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@types/dom-webcodecs": "^0.1.11",
|
|
12
|
+
"@types/node": "^20.14.9",
|
|
13
|
+
"vite-plugin-dts": "^3.9.1",
|
|
14
|
+
"vite-tsconfig-paths": "^4.3.2"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
|
|
18
|
+
"build": "vite build",
|
|
19
|
+
"build:watch": "vite build --watch"
|
|
20
|
+
},
|
|
21
|
+
"author": "",
|
|
22
|
+
"license": "UNLICENSED",
|
|
23
|
+
"dependencies": {}
|
|
24
|
+
}
|