Skip to content

Commit 1b27647

Browse files
committed
Deploying to main from @ SeptKit/set@4e44e07 🚀
1 parent 5b0b796 commit 1b27647

File tree

2 files changed

+15666
-0
lines changed

2 files changed

+15666
-0
lines changed
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"name": "@septkit/dataflow",
3+
"version": "19",
4+
"description": "extension for SET Platform that provides dataflow capabilities between Logic-Nodes",
5+
"private": true,
6+
"type": "module",
7+
"contributes": {
8+
"customEditors": [
9+
{
10+
"id": "sprinteins.dataflow_extension.dataflow",
11+
"displayName": "Dataflow",
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": "npm run build -- --watch",
26+
"build:serve": "concurrently \"npm run preview\" \"npm run build:watch\"",
27+
"preview": "vite preview --port 54947",
28+
"test": "vitest --project unit",
29+
"test:watch": "pnpm test --watch",
30+
"build-only": "vite build",
31+
"type-check": "vue-tsc --build",
32+
"lint": "oxlint . --fix -D correctness --ignore-path .gitignore",
33+
"format": "prettier --write src/",
34+
"format:check": "prettier --check src/",
35+
"install:browser": "pnpm exec playwright install chromium",
36+
"link:ui": "rm -rf ./node_modules/@septkit/ui && ln -s ../../../../ui ./node_modules/@septkit/ui",
37+
"unlink:ui": "rm -rf ./node_modules/@septkit/ui && pnpm install",
38+
"link:fileio": "rm -rf ./node_modules/@septkit/fileio && ln -s ../../../../fileio ./node_modules/@septkit/fileio",
39+
"unlink:fileio": "rm -rf ./node_modules/@septkit/fileio && pnpm install",
40+
"unlink:all": "rm -rf ./node_modules/@septkit && pnpm install"
41+
},
42+
"dependencies": {
43+
"@septkit/fileio": "catalog:",
44+
"@septkit/ui": "catalog:",
45+
"@tailwindcss/vite": "^4.1.11",
46+
"@vueuse/core": "^13.5.0",
47+
"daisyui": "^5.0.46",
48+
"dexie": "4.2.0",
49+
"pinia": "^3.0.3",
50+
"tailwindcss": "^4.1.12",
51+
"vite-plugin-css-injected-by-js": "^3.5.2",
52+
"vite-plugin-static-copy": "^3.1.1",
53+
"vitest-browser-vue": "^1.0.0",
54+
"vue": "^3.5.17"
55+
},
56+
"devDependencies": {
57+
"@testing-library/vue": "^8.1.0",
58+
"@tsconfig/node22": "^22.0.2",
59+
"@types/jsdom": "^21.1.7",
60+
"@types/node": "^22.15.32",
61+
"@vitejs/plugin-vue": "^6.0.0",
62+
"@vitest/browser": "^3.2.4",
63+
"@vue/test-utils": "^2.4.6",
64+
"@vue/tsconfig": "^0.7.0",
65+
"concurrently": "^9.2.0",
66+
"jiti": "^2.4.2",
67+
"npm-run-all2": "^8.0.4",
68+
"oxlint": "~1.6.0",
69+
"playwright": "^1.53.2",
70+
"prettier": "3.5.3",
71+
"typescript": "~5.8.0",
72+
"vite": "^7.0.0",
73+
"vite-plugin-vue-devtools": "^7.7.7",
74+
"vitest": "^3.2.4",
75+
"vue-tsc": "^2.2.10"
76+
}
77+
}

0 commit comments

Comments
 (0)