@brightsideoy/kama 0.1.0-alpha.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/README.md +0 -0
- package/dist/index.js +2872 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@brightsideoy/kama",
|
|
3
|
+
"version": "0.1.0-alpha.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "concurrently \"vite\" \"tsx watch server/index.ts\"",
|
|
18
|
+
"build": "vite build",
|
|
19
|
+
"build:cms": "vue-tsc -p tsconfig.build.json || true && vite build",
|
|
20
|
+
"build:seed-sql": "tsx src/db/generate-sql.ts",
|
|
21
|
+
"db:seed": "npm run build:seed-sql && tsx -e \"import Database from 'better-sqlite3'; import fs from 'node:fs'; const db = new Database('data/cms.db'); db.exec(fs.readFileSync('seed.sql', 'utf8')); console.log('✅ Database seeded successfully!');\"",
|
|
22
|
+
"d1:seed:remote": "npm run build:seed-sql && npx wrangler d1 execute YOUR_D1_NAME --remote --file=./seed.sql",
|
|
23
|
+
"serve": "tsx server/index.ts",
|
|
24
|
+
"prepublishOnly": "npm run build:cms"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@heroicons/vue": "^2.2.0",
|
|
31
|
+
"@hono/node-server": "^2.1.1",
|
|
32
|
+
"@tiptap/core": "^3.30.0",
|
|
33
|
+
"@tiptap/extension-subscript": "^3.30.1",
|
|
34
|
+
"@tiptap/extension-superscript": "^3.30.1",
|
|
35
|
+
"@tiptap/extension-table": "^3.30.0",
|
|
36
|
+
"@tiptap/extension-table-cell": "^3.30.0",
|
|
37
|
+
"@tiptap/extension-table-header": "^3.30.0",
|
|
38
|
+
"@tiptap/extension-table-row": "^3.30.0",
|
|
39
|
+
"@tiptap/pm": "^3.30.0",
|
|
40
|
+
"@tiptap/starter-kit": "^3.30.0",
|
|
41
|
+
"@tiptap/vue-3": "^3.30.0",
|
|
42
|
+
"better-sqlite3": "^13.0.3",
|
|
43
|
+
"drizzle-orm": "^0.45.2",
|
|
44
|
+
"hono": "^4.13.2",
|
|
45
|
+
"locale-codes": "^1.3.1",
|
|
46
|
+
"lru-cache": "^11.5.2",
|
|
47
|
+
"lucide-vue-next": "^1.0.0",
|
|
48
|
+
"sharp": "^0.35.3",
|
|
49
|
+
"vue": "^3.5.41",
|
|
50
|
+
"vue-advanced-cropper": "^2.8.9",
|
|
51
|
+
"vuedraggable": "^4.1.0",
|
|
52
|
+
"yaml": "^2.9.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@iconify-json/heroicons": "^1.2.3",
|
|
56
|
+
"@iconify-json/lucide": "^1.2.123",
|
|
57
|
+
"@types/better-sqlite3": "^9.6.0",
|
|
58
|
+
"@types/node": "^26.2.0",
|
|
59
|
+
"@types/sharp": "^0.31.1",
|
|
60
|
+
"@types/yaml": "^1.9.6",
|
|
61
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
62
|
+
"concurrently": "^10.0.4",
|
|
63
|
+
"drizzle-kit": "^0.18.1",
|
|
64
|
+
"tsx": "^4.23.12",
|
|
65
|
+
"typescript": "~5.7.2",
|
|
66
|
+
"unplugin-icons": "^23.0.1",
|
|
67
|
+
"vite": "^8.2.1",
|
|
68
|
+
"vue-tsc": "^2.2.0"
|
|
69
|
+
}
|
|
70
|
+
}
|