@virtual-content/core 0.1.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/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@virtual-content/core",
3
+ "version": "0.1.0",
4
+ "description": "Framework-independent virtual content engine based on center-origin positioning.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "EyKettle <eykettle@tutamail.com> (https://eykettle.top)",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+ssh://git@github.com/EyKettle/virtual-content.git",
11
+ "directory": "packages/core"
12
+ },
13
+ "homepage": "https://github.com/EyKettle/virtual-content/tree/main/packages/core#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/EyKettle/virtual-content/issues"
16
+ },
17
+ "keywords": [
18
+ "virtual",
19
+ "virtualization",
20
+ "virtual-scroll",
21
+ "virtual-list",
22
+ "virtual-grid",
23
+ "scroll",
24
+ "typescript"
25
+ ],
26
+ "engines": {
27
+ "node": ">=18"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "sideEffects": false,
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "main": "./dist/index.cjs",
37
+ "module": "./dist/index.js",
38
+ "types": "./dist/index.d.ts",
39
+ "exports": {
40
+ ".": {
41
+ "types": "./dist/index.d.ts",
42
+ "import": "./dist/index.js",
43
+ "require": "./dist/index.cjs"
44
+ }
45
+ },
46
+ "scripts": {
47
+ "build": "tsup src/index.ts --format esm,cjs --dts --clean --no-splitting --tsconfig tsconfig.build.json",
48
+ "test": "vitest run --passWithNoTests tests",
49
+ "typecheck": "tsc -p tsconfig.json --noEmit"
50
+ }
51
+ }