@unith-ai/core-client 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.
Files changed (2) hide show
  1. package/eslint.config.cjs +1 -0
  2. package/package.json +47 -0
@@ -0,0 +1 @@
1
+ module.exports = [{}];
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@unith-ai/core-client",
3
+ "version": "2.0.0",
4
+ "description": "",
5
+ "main": "./dist/lib.umd.js",
6
+ "module": "./dist/lib.module.js",
7
+ "source": "src/index.ts",
8
+ "type": "module",
9
+ "unpkg": "./dist/lib.umd.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/lib.modern.js",
15
+ "require": "./dist/lib.cjs"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "build": "BROWSERSLIST_ENV=modern microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react src/index.ts",
20
+ "clean": "rm -rf ./dist",
21
+ "dev": "npm run clean && BROWSERSLIST_ENV=development microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react src/index.ts -w -f modern",
22
+ "dev:build-only": "npm run clean && BROWSERSLIST_ENV=development microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react src/index.ts -w -f modern",
23
+ "lint": "npm run lint:ts && npm run lint:es",
24
+ "lint:ts": "tsc --noEmit --skipLibCheck",
25
+ "lint:es": "npx eslint .",
26
+ "lint:prettier": "prettier 'src/**/*.ts'",
27
+ "prepublishOnly": "npm run build",
28
+ "publish:public": "npm publish --access public",
29
+ "test": "jest"
30
+ },
31
+ "keywords": [],
32
+ "author": "UNITH AI",
33
+ "license": "MIT",
34
+ "devDependencies": {
35
+ "@types/jest": "^29.5.12",
36
+ "eslint": "^9.8.0",
37
+ "jest": "^29.7.0",
38
+ "microbundle": "^0.15.1",
39
+ "typescript": "^5.5.4"
40
+ },
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/unith-ai/libraries",
44
+ "directory": "packages/core-client"
45
+ },
46
+ "dependencies": {}
47
+ }