@geekybones/editor-kit 2.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/README.md +104 -0
- package/dist/editor-kit.js +8382 -0
- package/dist/editor-kit.js.map +1 -0
- package/dist/index.d.ts +742 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@geekybones/editor-kit",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Canvas editor built on PixiJS v8. Compose only the features you need — elements, history, camera, snap, alignment, serialization, and more.",
|
|
5
|
+
"author": "Manoj Kumar <manoj@geekybones.com>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://geekybones.github.io/editor-kit/",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/geekybones/editor-kit"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/geekybones/editor-kit/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"canvas",
|
|
17
|
+
"editor",
|
|
18
|
+
"pixi",
|
|
19
|
+
"pixijs",
|
|
20
|
+
"webgl",
|
|
21
|
+
"webgpu",
|
|
22
|
+
"graphics",
|
|
23
|
+
"canvas-editor",
|
|
24
|
+
"design-tool",
|
|
25
|
+
"text-effects",
|
|
26
|
+
"vector",
|
|
27
|
+
"typescript"
|
|
28
|
+
],
|
|
29
|
+
"packageManager": "pnpm@10.26.1",
|
|
30
|
+
"type": "module",
|
|
31
|
+
"module": "./dist/editor-kit.js",
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"sideEffects": false,
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"import": "./dist/editor-kit.js"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"README.md",
|
|
43
|
+
"LICENSE"
|
|
44
|
+
],
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=24.0.0"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "vite build",
|
|
53
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
54
|
+
"build:playground": "pnpm build && pnpm --dir playground build",
|
|
55
|
+
"lint": "biome check .",
|
|
56
|
+
"lint:fix": "biome check --write .",
|
|
57
|
+
"format": "biome format --write .",
|
|
58
|
+
"test": "vitest run",
|
|
59
|
+
"test:watch": "vitest",
|
|
60
|
+
"coverage": "vitest run --coverage",
|
|
61
|
+
"dev:playground": "pnpm --dir playground dev",
|
|
62
|
+
"typecheck": "tsc --noEmit"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"pixi.js": "^8.16.0"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"earcut": "^3.0.2",
|
|
69
|
+
"eventemitter3": "^5.0.1",
|
|
70
|
+
"typr.js": "^1.0.0"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@biomejs/biome": "2.4.14",
|
|
74
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
75
|
+
"@semantic-release/github": "^12.0.8",
|
|
76
|
+
"@semantic-release/npm": "^13.1.5",
|
|
77
|
+
"@semantic-release/release-notes-generator": "^14.1.1",
|
|
78
|
+
"@types/node": "^22.0.0",
|
|
79
|
+
"@vitest/coverage-v8": "^3.0.0",
|
|
80
|
+
"jsdom": "^26.0.0",
|
|
81
|
+
"pixi.js": "^8.16.0",
|
|
82
|
+
"semantic-release": "^25.0.3",
|
|
83
|
+
"typescript": "^5.7.0",
|
|
84
|
+
"vite": "^6.0.0",
|
|
85
|
+
"vite-plugin-dts": "^4.0.0",
|
|
86
|
+
"vitest": "^3.0.0"
|
|
87
|
+
}
|
|
88
|
+
}
|