spine-framework 0.1.23 → 0.1.25

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.
@@ -105,6 +105,7 @@ function copyFrameworkFiles(dryRun: boolean): void {
105
105
  { src: 'netlify.toml', dest: 'netlify.toml' },
106
106
  { src: 'vitest.config.ts', dest: 'vitest.config.ts' },
107
107
  { src: 'index.html', dest: 'index.html' },
108
+ { src: 'package-project.json', dest: 'package.json' },
108
109
  { src: 'STRUCTURE.md', dest: 'STRUCTURE.md' },
109
110
  ]
110
111
 
@@ -1 +1 @@
1
- {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../.framework/cli/commands/init.ts"],"names":[],"mappings":"AACA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AA0IxC,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,OAAO,QAcpD"}
1
+ {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../.framework/cli/commands/init.ts"],"names":[],"mappings":"AACA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AA2IxC,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,OAAO,QAcpD"}
package/index.html ADDED
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Spine</title>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ <script type="module" src="/src/main.tsx"></script>
12
+ </body>
13
+ </html>
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "spine-project",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "scripts": {
6
+ "assemble": "bash node_modules/spine-framework/.framework/scripts/assemble.sh",
7
+ "dev": "netlify dev",
8
+ "build": "npm run assemble && netlify build",
9
+ "preview": "netlify dev"
10
+ },
11
+ "dependencies": {
12
+ "spine-framework": "^0.1.0"
13
+ }
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spine-framework",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "private": false,
5
5
  "description": "Spine — enterprise application framework built on Supabase + Netlify + React",
6
6
  "type": "module",
@@ -59,6 +59,7 @@
59
59
  "netlify.toml",
60
60
  "vitest.config.ts",
61
61
  "index.html",
62
+ "package-project.json",
62
63
  "STRUCTURE.md",
63
64
  "README.md"
64
65
  ],