Skip to content

Commit 72148d6

Browse files
committed
Initial commit
0 parents  commit 72148d6

12 files changed

+136
-0
lines changed

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = 0
13+
trim_trailing_whitespace = false
14+
15+
[COMMIT_EDITMSG]
16+
max_line_length = 0

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* linguist-vendored
2+
*.ts linguist-vendored=false

.github/codeowners

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @ivodolenc

.github/release.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
changelog:
2+
categories:
3+
- title: Breaking Changes
4+
labels:
5+
- breaking-change
6+
- break
7+
- title: New Features
8+
labels:
9+
- feat
10+
- title: Bug Fixes
11+
labels:
12+
- fix
13+
- title: Types
14+
labels:
15+
- types
16+
- dts
17+
- title: Refactoring Code
18+
labels:
19+
- refactor
20+
- title: Tests
21+
labels:
22+
- test
23+
- title: Documentation
24+
labels:
25+
- docs
26+
- title: Other Changes
27+
labels:
28+
- '*'

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
node_modules
3+
*.log*
4+
.private
5+
.cache
6+
.env
7+
.npmrc
8+
dist

.prettierignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
node_modules
3+
*-lock.*
4+
*.log*
5+
.private
6+
.cache
7+
.env
8+
dist

.vscode/extensions.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"recommendations": [
3+
"dbaeumer.vscode-eslint",
4+
"esbenp.prettier-vscode",
5+
"EditorConfig.EditorConfig",
6+
"svelte.svelte-vscode",
7+
"hypernym-studio.hypernym-icons"
8+
]
9+
}

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"editor.formatOnSave": true,
4+
"eslint.validate": ["javascript", "typescript", "svelte"]
5+
}

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Ivo Dolenc, Hypernym Studio
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "@hypernym/svelte-markdown-workspace",
3+
"version": "0.0.0",
4+
"author": "Hypernym Studio",
5+
"private": true,
6+
"type": "module",
7+
"scripts": {
8+
"build:pkg": "pnpm --filter @hypernym/svelte-markdown build",
9+
"publish:pkg": "pnpm --filter @hypernym/svelte-markdown publish:pkg",
10+
"lint:pkg": "pnpm --filter @hypernym/svelte-markdown lint",
11+
"format:pkg": "pnpm --filter @hypernym/svelte-markdown format",
12+
"dev:play": "pnpm --filter playground-sveltekit dev",
13+
"build:play": "pnpm --filter playground-sveltekit build",
14+
"preview:play": "pnpm --filter playground-sveltekit preview",
15+
"sync:play": "pnpm --filter playground-sveltekit sync",
16+
"lint:play": "pnpm --filter playground-sveltekit lint",
17+
"format:play": "pnpm --filter playground-sveltekit format"
18+
},
19+
"packageManager": "[email protected]",
20+
"engines": {
21+
"node": ">=20.0.0",
22+
"pnpm": ">=9.0.0"
23+
},
24+
"devDependencies": {
25+
"@hypernym/bundler": "^0.14.3",
26+
"@hypernym/eslint-config": "^3.5.8",
27+
"@hypernym/prettier-config": "^3.2.3",
28+
"@hypernym/tsconfig": "^2.6.0",
29+
"@types/node": "^22.13.5",
30+
"eslint": "^9.21.0",
31+
"prettier": "^3.5.2",
32+
"typescript": "^5.7.3"
33+
}
34+
}

pnpm-workspace.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
packages:
2+
- 'packages/*'
3+
- 'playgrounds/*'

prettier.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from '@hypernym/prettier-config'

0 commit comments

Comments
 (0)