Skip to content

Commit 85faeec

Browse files
committed
Deploying to main from @ SeptKit/set@79624f3 🚀
1 parent 599d8e7 commit 85faeec

File tree

2 files changed

+77346
-0
lines changed

2 files changed

+77346
-0
lines changed
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"name": "@septkit/ext-structure",
3+
"version": "25",
4+
"description": "SeptKit extension to manage structures in SCL",
5+
"private": true,
6+
"type": "module",
7+
"contributes": {
8+
"customEditors": [
9+
{
10+
"id": "sprinteins.structure.dataflow",
11+
"displayName": "Structure",
12+
"icon": "/assets/icon.svg",
13+
"fileSelectors": [
14+
"SSD",
15+
"ASD",
16+
"SCD"
17+
],
18+
"entryPoint": "/set-editor.js"
19+
}
20+
]
21+
},
22+
"scripts": {
23+
"dev": "vite",
24+
"build": "vite build",
25+
"build:watch": "vite build --watch",
26+
"build:serve": "concurrently \"npm run preview\" \"npm run build:watch\"",
27+
"preview": "vite preview --port 54945",
28+
"test": "vitest --project unit",
29+
"test:watch": "pnpm test --watch",
30+
"test:debug": "npm run test -- --browser.headless=false --browser.devtools=true --testTimeout 10000000",
31+
"test:debug:watch": "npm run test:debug -- --watch",
32+
"build-only": "vite build",
33+
"type-check": "vue-tsc --build",
34+
"lint": "oxlint . --fix -D correctness --ignore-path .gitignore",
35+
"format": "prettier --write src/",
36+
"format:check": "prettier --check src/",
37+
"link:ui": "rm -rf ./node_modules/@septkit/ui && ln -s ../../../../ui ./node_modules/@septkit/ui",
38+
"unlink:ui": "rm -rf ./node_modules/@septkit/ui && pnpm install",
39+
"link:fileio": "rm -rf ./node_modules/@septkit/fileio && ln -s ../../../../fileio ./node_modules/@septkit/fileio",
40+
"unlink:fileio": "rm -rf ./node_modules/@septkit/fileio && pnpm install",
41+
"unlink:all": "rm -rf ./node_modules/@septkit && pnpm install",
42+
"ci-tests": "npm run format:check && npm run lint && npm run type-check && npm run build && npm run test"
43+
},
44+
"dependencies": {
45+
"@septkit/fileio": "catalog:",
46+
"@septkit/ui": "catalog:",
47+
"@tailwindcss/vite": "^4.1.11",
48+
"@vue-flow/background": "^1.3.2",
49+
"@vue-flow/controls": "^1.1.3",
50+
"@vue-flow/core": "^1.46.0",
51+
"@vue-flow/minimap": "^1.5.4",
52+
"@vue-flow/node-resizer": "^1.5.0",
53+
"@vueuse/core": "^13.5.0",
54+
"@vueuse/rxjs": "^13.9.0",
55+
"dexie": "4.2.0",
56+
"elkjs": "^0.10.0",
57+
"pinia": "^3.0.3",
58+
"reka-ui": "^2.5.1",
59+
"tailwindcss": "^4.1.11",
60+
"vite-plugin-css-injected-by-js": "^3.5.2",
61+
"vite-plugin-static-copy": "^3.1.1",
62+
"vitest-browser-vue": "^1.0.0",
63+
"vue": "^3.5.17"
64+
},
65+
"devDependencies": {
66+
"@testing-library/vue": "^8.1.0",
67+
"@tsconfig/node22": "^22.0.2",
68+
"@types/jsdom": "^21.1.7",
69+
"@types/node": "^22.15.32",
70+
"@vitejs/plugin-vue": "^6.0.0",
71+
"@vitest/browser": "^3.2.4",
72+
"@vue/test-utils": "^2.4.6",
73+
"@vue/tsconfig": "^0.7.0",
74+
"concurrently": "^9.2.0",
75+
"daisyui": "^5.0.46",
76+
"jiti": "^2.4.2",
77+
"npm-run-all2": "^8.0.4",
78+
"oxlint": "~1.6.0",
79+
"playwright": "^1.53.2",
80+
"prettier": "3.5.3",
81+
"typescript": "~5.8.0",
82+
"vite": "^7.0.0",
83+
"vite-plugin-vue-devtools": "^7.7.7",
84+
"vitest": "^3.2.4",
85+
"vue-tsc": "^2.2.10",
86+
"xml-formatter": "^3.6.7"
87+
}
88+
}

extensions/structure/25/set-editor.js

Lines changed: 77258 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)