@clianta/sdk 1.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/CHANGELOG.md +96 -0
- package/LICENSE +21 -0
- package/README.md +303 -0
- package/dist/clianta.cjs.js +1809 -0
- package/dist/clianta.cjs.js.map +1 -0
- package/dist/clianta.esm.js +1801 -0
- package/dist/clianta.esm.js.map +1 -0
- package/dist/clianta.umd.js +1815 -0
- package/dist/clianta.umd.js.map +1 -0
- package/dist/clianta.umd.min.js +7 -0
- package/dist/clianta.umd.min.js.map +1 -0
- package/dist/index.d.ts +353 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@clianta/sdk",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Professional CRM SDK for Clianta - Track visitors, manage contacts, opportunities, and analyze behavior",
|
|
6
|
+
"main": "dist/clianta.cjs.js",
|
|
7
|
+
"module": "dist/clianta.esm.js",
|
|
8
|
+
"browser": "dist/clianta.umd.min.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/clianta.esm.js",
|
|
14
|
+
"require": "./dist/clianta.cjs.js",
|
|
15
|
+
"default": "./dist/clianta.esm.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"CHANGELOG.md"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "rollup -c",
|
|
26
|
+
"build:watch": "rollup -c -w",
|
|
27
|
+
"test": "vitest",
|
|
28
|
+
"test:coverage": "vitest --coverage",
|
|
29
|
+
"lint": "eslint src --ext .ts",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"clean": "rimraf dist",
|
|
32
|
+
"prepublishOnly": "npm run clean && npm run build"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"analytics",
|
|
36
|
+
"tracking",
|
|
37
|
+
"crm",
|
|
38
|
+
"lead-generation",
|
|
39
|
+
"visitor-tracking",
|
|
40
|
+
"clianta",
|
|
41
|
+
"contacts",
|
|
42
|
+
"opportunities",
|
|
43
|
+
"sales-automation"
|
|
44
|
+
],
|
|
45
|
+
"author": "Clianta",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"homepage": "https://clianta.online",
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/xeet991fx/cliantaSDK"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
54
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
55
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
56
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
57
|
+
"@types/node": "^20.11.0",
|
|
58
|
+
"rimraf": "^5.0.5",
|
|
59
|
+
"rollup": "^4.9.6",
|
|
60
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
61
|
+
"tslib": "^2.6.2",
|
|
62
|
+
"typescript": "^5.3.3",
|
|
63
|
+
"vitest": "^1.2.2"
|
|
64
|
+
},
|
|
65
|
+
"engines": {
|
|
66
|
+
"node": ">=18.0.0"
|
|
67
|
+
},
|
|
68
|
+
"sideEffects": false
|
|
69
|
+
}
|