-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.37 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "freon-documentation",
"version": "2.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/freon4dsl/Freon-documentation"
},
"type": "module",
"scripts": {
"install-examples": "cd ./scripts && npm run install-examples && cd ../",
"buildSite": "npm run cleanRoutes && cd ./scripts && npm run buildSite && cd ../ && npm run format",
"clean": "rm -r ./code-examples/*/src/freon ./code-examples/*/src/custom ./code-examples/*/src/defs ./code-examples/*/src/external",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig tsconfig.json",
"errors-only": "svelte-kit sync && svelte-check --threshold error --tsconfig tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --log-level silent --write ./src",
"formatMd": "prettier --log-level silent --write ./docu-content",
"cleanRoutes": "rm -rf ./src/Routes/About && rm -rf ./src/Routes/Demos && rm -rf ./src/Routes/Documentation && rm -rf ./src/Routes/Examples && rm -rf ./src/Routes/Background",
"publish-local": "npm publish --registry http://localhost:4873",
"unpublish-local": "npm unpublish --force --registry http://localhost:4873",
"republish-local": "npm run unpublish-local && npm run publish-local",
"install-local": "npm install --registry http://localhost:4873"
},
"devDependencies": {
"@freon4dsl/core": "^2.0.0-beta.5",
"@freon4dsl/meta": "^2.0.0-beta.5",
"@sveltejs/kit": "^2.48.4",
"@types/cookie": "^1.0.0",
"@types/node": "^24.7.0",
"@types/prismjs": "1.26.5",
"embedme": "^1.22.1",
"eslint": "^9.37.0",
"eslint-plugin-svelte": "^3.12.4",
"globals": "^16.4.0",
"gray-matter": "^4.0.3",
"mdast-util-to-string": "^4.0.0",
"mdsvex": "^0.12.6",
"patch-package": "^8.0.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "5.39.9",
"svelte-check": "^4.3.2",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"unist-util-visit": "^5.0.0",
"vite": "^7.2.2"
},
"dependencies": {
"@fontsource/fira-mono": "^5.2.7",
"@lukeed/uuid": "^2.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"copy-to-clipboard": "^3.3.3",
"prismjs": "1.30.0",
"svelte-intersection-observer": "^1.0.0"
}
}