@albionlabs/brochure-templates 0.0.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 +42 -0
- package/dist/assets/favicon.svg +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/registry.d.ts +4 -0
- package/dist/registry.js +16 -0
- package/dist/shared/styles/print-base.css +12 -0
- package/dist/templates/investor-pitch/InvestorPitchRenderer.svelte +101 -0
- package/dist/templates/investor-pitch/InvestorPitchRenderer.svelte.d.ts +7 -0
- package/dist/templates/investor-pitch/components/AssetLocation.svelte +143 -0
- package/dist/templates/investor-pitch/components/AssetLocation.svelte.d.ts +9 -0
- package/dist/templates/investor-pitch/components/DevelopmentTimeline.svelte +88 -0
- package/dist/templates/investor-pitch/components/DevelopmentTimeline.svelte.d.ts +8 -0
- package/dist/templates/investor-pitch/components/Footer.svelte +46 -0
- package/dist/templates/investor-pitch/components/Footer.svelte.d.ts +8 -0
- package/dist/templates/investor-pitch/components/Header.svelte +86 -0
- package/dist/templates/investor-pitch/components/Header.svelte.d.ts +9 -0
- package/dist/templates/investor-pitch/components/InvestmentThesis.svelte +43 -0
- package/dist/templates/investor-pitch/components/InvestmentThesis.svelte.d.ts +7 -0
- package/dist/templates/investor-pitch/components/KeyPartners.svelte +69 -0
- package/dist/templates/investor-pitch/components/KeyPartners.svelte.d.ts +8 -0
- package/dist/templates/investor-pitch/components/KeyRisks.svelte +48 -0
- package/dist/templates/investor-pitch/components/KeyRisks.svelte.d.ts +7 -0
- package/dist/templates/investor-pitch/components/PortfolioValueChart.svelte +150 -0
- package/dist/templates/investor-pitch/components/PortfolioValueChart.svelte.d.ts +11 -0
- package/dist/templates/investor-pitch/components/SensitivitySection.svelte +214 -0
- package/dist/templates/investor-pitch/components/SensitivitySection.svelte.d.ts +7 -0
- package/dist/templates/investor-pitch/components/ValuePropositions.svelte +71 -0
- package/dist/templates/investor-pitch/components/ValuePropositions.svelte.d.ts +8 -0
- package/dist/templates/investor-pitch/index.d.ts +5 -0
- package/dist/templates/investor-pitch/index.js +4 -0
- package/dist/templates/investor-pitch/meta.d.ts +2 -0
- package/dist/templates/investor-pitch/meta.js +7 -0
- package/dist/templates/investor-pitch/print.css +12 -0
- package/dist/templates/investor-pitch/sample.json +159 -0
- package/dist/templates/investor-pitch/schema.json +360 -0
- package/dist/templates/investor-pitch/types.d.ts +118 -0
- package/dist/templates/investor-pitch/types.js +1 -0
- package/dist/types.d.ts +16 -0
- package/dist/types.js +1 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@albionlabs/brochure-templates",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"svelte": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"svelte": "./dist/index.js",
|
|
11
|
+
"default": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./templates/investor-pitch": {
|
|
14
|
+
"types": "./dist/templates/investor-pitch/index.d.ts",
|
|
15
|
+
"svelte": "./dist/templates/investor-pitch/index.js",
|
|
16
|
+
"default": "./dist/templates/investor-pitch/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"!dist/**/*.test.*"
|
|
22
|
+
],
|
|
23
|
+
"sideEffects": false,
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/albionlabs/brochure-templates.git"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"dev": "vite dev",
|
|
30
|
+
"build": "vite build",
|
|
31
|
+
"preview": "vite preview",
|
|
32
|
+
"package": "svelte-kit sync && svelte-package",
|
|
33
|
+
"prepare": "svelte-kit sync || echo ''",
|
|
34
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
35
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"svelte": "^5.0.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@sveltejs/adapter-auto": "^7.0.0",
|
|
42
|
+
"@sveltejs/kit": "^2.50.2",
|
|
43
|
+
"@sveltejs/package": "^2.5.7",
|
|
44
|
+
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
45
|
+
"svelte": "^5.51.0",
|
|
46
|
+
"svelte-check": "^4.3.6",
|
|
47
|
+
"typescript": "^5.9.3",
|
|
48
|
+
"vite": "^7.3.1"
|
|
49
|
+
}
|
|
50
|
+
}
|