sealpixel 1.0.0-rc.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 +13 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -0
- package/package.json +37 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# sealpixel
|
|
2
|
+
|
|
3
|
+
The Sealpixel image editor in one install. This package re-exports `@sealpixel/element`.
|
|
4
|
+
|
|
5
|
+
```js
|
|
6
|
+
import 'sealpixel';
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```html
|
|
10
|
+
<sealpixel-editor src="/photo.jpg"></sealpixel-editor>
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Framework wrappers live in `@sealpixel/react`, `@sealpixel/vue`, `@sealpixel/svelte` and `@sealpixel/astro`; the headless core is `@sealpixel/core`. Documentation: https://docs.sealpixel.dev
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,oBAAoB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
// The unscoped entry point. `import 'sealpixel'` is `import '@sealpixel/element'`:
|
|
2
|
+
// it registers <sealpixel-editor> with every first-party plugin and the bundled
|
|
3
|
+
// render worker, and re-exports the element's API.
|
|
4
|
+
export * from '@sealpixel/element';
|
|
5
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,mFAAmF;AACnF,gFAAgF;AAChF,mDAAmD;AACnD,cAAc,oBAAoB,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sealpixel",
|
|
3
|
+
"version": "1.0.0-rc.0",
|
|
4
|
+
"description": "The Sealpixel image editor in one install: re-exports @sealpixel/element, so `import 'sealpixel'` registers <sealpixel-editor> with every first-party plugin.",
|
|
5
|
+
"license": "BUSL-1.1",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/9feet/sealpixel.git",
|
|
9
|
+
"directory": "packages/sealpixel"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://docs.sealpixel.dev",
|
|
12
|
+
"bugs": "https://github.com/9feet/sealpixel/issues",
|
|
13
|
+
"type": "module",
|
|
14
|
+
"sideEffects": true,
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"default": "./dist/index.js"
|
|
23
|
+
},
|
|
24
|
+
"./package.json": "./package.json"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsc -p tsconfig.build.json",
|
|
28
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@sealpixel/element": "workspace:*"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@sealpixel/config": "workspace:*",
|
|
35
|
+
"typescript": "^5.9.0"
|
|
36
|
+
}
|
|
37
|
+
}
|