@flowscape-ui/core-sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +300 -0
- package/dist/index.cjs +7347 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1430 -0
- package/dist/index.d.ts +1430 -0
- package/dist/index.js +7314 -0
- package/dist/index.js.map +1 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@flowscape-ui/core-sdk",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Framework-agnostic 2D canvas engine built on Konva",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"core",
|
|
7
|
+
"canvas",
|
|
8
|
+
"canvas engine",
|
|
9
|
+
"konva",
|
|
10
|
+
"sdk",
|
|
11
|
+
"core-sdk",
|
|
12
|
+
"graphics",
|
|
13
|
+
"2D",
|
|
14
|
+
"typescript",
|
|
15
|
+
"framework-agnostic"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "Flowscape UI Team"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/Flowscape-UI/core-sdk.git"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/Flowscape-UI/core-sdk/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/Flowscape-UI/core-sdk#readme",
|
|
29
|
+
"type": "module",
|
|
30
|
+
"main": "dist/index.cjs",
|
|
31
|
+
"module": "dist/index.js",
|
|
32
|
+
"types": "dist/index.d.ts",
|
|
33
|
+
"sideEffects": false,
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"import": "./dist/index.js",
|
|
38
|
+
"require": "./dist/index.cjs"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"README.md",
|
|
44
|
+
"LICENSE"
|
|
45
|
+
],
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=18.0.0"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"dev": "vite --config playground/vite.config.ts",
|
|
51
|
+
"build": "tsup",
|
|
52
|
+
"prepublishOnly": "npm run build && npm run lint:ts && npm run test:run",
|
|
53
|
+
"test": "vitest",
|
|
54
|
+
"test:ui": "vitest --ui",
|
|
55
|
+
"test:run": "vitest run",
|
|
56
|
+
"test:coverage": "vitest run --coverage",
|
|
57
|
+
"lint": "eslint .",
|
|
58
|
+
"lint:fix": "eslint . --fix",
|
|
59
|
+
"lint:ts": "tsc -p tsconfig.json --noEmit",
|
|
60
|
+
"format": "prettier --write .",
|
|
61
|
+
"format:check": "prettier --check .",
|
|
62
|
+
"release:tag": "npm version patch && git push --follow-tags"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@eslint/js": "^9.10.0",
|
|
66
|
+
"@types/node": "^22.5.4",
|
|
67
|
+
"@typescript-eslint/eslint-plugin": "^8.7.0",
|
|
68
|
+
"@typescript-eslint/parser": "^8.7.0",
|
|
69
|
+
"@vitest/ui": "^2.1.8",
|
|
70
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
71
|
+
"eslint": "^9.10.0",
|
|
72
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
73
|
+
"eslint-plugin-import": "^2.29.1",
|
|
74
|
+
"happy-dom": "^15.11.7",
|
|
75
|
+
"jiti": "^2.5.1",
|
|
76
|
+
"jsdom": "^25.0.1",
|
|
77
|
+
"prettier": "^3.6.2",
|
|
78
|
+
"tsup": "^8.2.4",
|
|
79
|
+
"typescript": "^5.6.2",
|
|
80
|
+
"vite": "^5.4.6",
|
|
81
|
+
"vitest": "^2.1.8",
|
|
82
|
+
"canvas": "^3.2.0"
|
|
83
|
+
},
|
|
84
|
+
"dependencies": {
|
|
85
|
+
"konva": "^9.3.16"
|
|
86
|
+
}
|
|
87
|
+
}
|