-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.45 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@solothought/text2chart",
"version": "1.0.4",
"description": "Generate interactive diagrams from text input",
"keywords": [
"text",
"algo",
"algorithm",
"flow",
"flowchart",
"interactive",
"svelte"
],
"repository": {
"type": "git",
"url": "https://github.com/solothought/text2chart"
},
"author": "Amit Gupta (https://solothought.com)",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/solothought/"
}
],
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"bundle": "rollup -c",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist_/index.mjs",
"require": "./dist_/index.cjs"
},
"./Flow.svelte": {
"types": "./dist/flow/FlowChart.svelte.d.ts",
"svelte": "./dist/flow/FlowChart.svelte"
},
"./flow": {
"types": "./dist/flow/index.d.ts",
"svelte": "./dist/flow/index.js",
"require": "./dist_/index.cjs"
},
"./style.css": "./dist_/bundle.css"
},
"files": [
"dist/flow",
"dist/*.js",
"dist/*.ts",
"dist/*.svelte",
"dist_",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"README.md",
"LICENSE",
"static/sampleflow.png"
],
"peerDependencies": {
"svelte": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"publint": "^0.2.0",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.2.2",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^4.2.7",
"svelte-check": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.11",
"vite-plugin-commonjs": "^0.10.3"
},
"type": "module",
"dependencies": {
"@solothought/text2obj": "^1.0.3",
"@xyflow/svelte": "^0.1.20",
"html-to-image": "^1.11.11"
}
}