Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit d004f3b

Browse files
committed
chore: Bootstrap mobile/scanner packages
1 parent 1d51331 commit d004f3b

12 files changed

Lines changed: 105 additions & 0 deletions

mobile/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# @dpkit/mobile
2+
3+
dpkit is a fast data management framework built on top of the Data Package standard and Polars DataFrames. It supports various formats like CSV, JSON, and Parquet and integrates with data platforms such as CKAN, Zenodo, and GitHub. For more information, please visit the [project's website](https://dpkit.app).

mobile/index.ts

Whitespace-only changes.

mobile/package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "@dpkit/mobile",
3+
"type": "module",
4+
"version": "0.0.0-dev",
5+
"exports": "./build/index.js",
6+
"sideEffects": false,
7+
"files": ["build"],
8+
"license": "MIT",
9+
"author": "Evgeny Karev",
10+
"repository": "https://github.com/datisthq/dpkit",
11+
"description": "Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames",
12+
"keywords": [
13+
"data",
14+
"polars",
15+
"dataframe",
16+
"datapackage",
17+
"tableschema",
18+
"typescript",
19+
"validation",
20+
"quality",
21+
"fair",
22+
"mobile",
23+
"android",
24+
"ios"
25+
],
26+
"scripts": {
27+
"build": "tsc"
28+
},
29+
"dependencies": {
30+
"@dpkit/metadata": "workspace:*",
31+
"@dpkit/dataset": "workspace:*"
32+
}
33+
}

mobile/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "../tsconfig.json"
3+
}

mobile/typedoc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"entryPoints": ["index.ts"],
3+
"skipErrorChecking": true
4+
}

pnpm-lock.yaml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ packages:
99
- image
1010
- library
1111
- metadata
12+
- mobile
1213
- portal
14+
- scanner
1315
- service
1416
- table
1517
- terminal

scanner/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# @dpkit/scanner
2+
3+
dpkit is a fast data management framework built on top of the Data Package standard and Polars DataFrames. It supports various formats like CSV, JSON, and Parquet and integrates with data platforms such as CKAN, Zenodo, and GitHub. For more information, please visit the [project's website](https://dpkit.app).

scanner/index.ts

Whitespace-only changes.

scanner/package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "@dpkit/scanner",
3+
"type": "module",
4+
"version": "0.0.0-dev",
5+
"exports": "./build/index.js",
6+
"sideEffects": false,
7+
"files": ["build"],
8+
"license": "MIT",
9+
"author": "Evgeny Karev",
10+
"repository": "https://github.com/datisthq/dpkit",
11+
"description": "Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames",
12+
"keywords": [
13+
"data",
14+
"polars",
15+
"dataframe",
16+
"datapackage",
17+
"tableschema",
18+
"typescript",
19+
"validation",
20+
"quality",
21+
"fair",
22+
"scanner",
23+
"ocr"
24+
],
25+
"scripts": {
26+
"build": "tsc"
27+
},
28+
"dependencies": {
29+
"@dpkit/metadata": "workspace:*",
30+
"@dpkit/dataset": "workspace:*"
31+
}
32+
}

0 commit comments

Comments
 (0)