@cognior/iap-sdk 0.0.2
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/LICENSE +9 -0
- package/README.md +1117 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.d.ts +113 -0
- package/dist/index.esm.js +1 -0
- package/dist/index.umd.js +1 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cognior/iap-sdk",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Intelligent Adoption Platform (IAP) JavaScript/TypeScript SDK for creating guided user experiences, tours, tooltips, modals, and surveys across web applications",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"intelligent-adoption",
|
|
7
|
+
"digital-adoption",
|
|
8
|
+
"user-onboarding",
|
|
9
|
+
"guided-tours",
|
|
10
|
+
"tooltips",
|
|
11
|
+
"modals",
|
|
12
|
+
"user-experience",
|
|
13
|
+
"sdk",
|
|
14
|
+
"cognior"
|
|
15
|
+
],
|
|
16
|
+
"author": "Cognior",
|
|
17
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/CogniorAI/WebUserModule.git",
|
|
21
|
+
"directory": "sdk"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/CogniorAI/WebUserModule/tree/main/sdk#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/CogniorAI/WebUserModule/issues"
|
|
26
|
+
},
|
|
27
|
+
"main": "./dist/index.cjs.js",
|
|
28
|
+
"module": "./dist/index.esm.js",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"browser": "./dist/index.umd.js",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"browser": "./dist/index.umd.js",
|
|
35
|
+
"import": "./dist/index.esm.js",
|
|
36
|
+
"require": "./dist/index.cjs.js",
|
|
37
|
+
"default": "./dist/index.umd.js"
|
|
38
|
+
},
|
|
39
|
+
"./package.json": "./package.json"
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"README.md",
|
|
44
|
+
"LICENSE"
|
|
45
|
+
],
|
|
46
|
+
"sideEffects": [
|
|
47
|
+
"./src/utils/immediateValidationPrevention.ts"
|
|
48
|
+
],
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=14.0.0"
|
|
51
|
+
},
|
|
52
|
+
"type": "module",
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsup",
|
|
55
|
+
"build:prod": "cross-env NODE_ENV=production tsup && node ./scripts/obfuscate-dist.mjs",
|
|
56
|
+
"build:dev": "tsup --watch",
|
|
57
|
+
"clean": "rimraf dist public/dist && rimraf --glob \"cognior-iap-sdk-*.tgz\"",
|
|
58
|
+
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
59
|
+
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
|
|
60
|
+
"type-check": "tsc --noEmit",
|
|
61
|
+
"test": "echo \"No tests specified\" && exit 0",
|
|
62
|
+
"prepublishOnly": "npm run clean && npm run build:prod",
|
|
63
|
+
"dev": "tsup --watch",
|
|
64
|
+
"serve": "npx http-server . -c-1 -p 5173",
|
|
65
|
+
"serve:public": "npx http-server public -c-1 -p 5173",
|
|
66
|
+
"serve:prod": "npm run build:prod && npx http-server . -c-1 -p 5173",
|
|
67
|
+
"pack": "npm run clean && npm run build:prod && npm pack"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@types/node": "^20.0.0",
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
72
|
+
"@typescript-eslint/parser": "^8.54.0",
|
|
73
|
+
"eslint": "^8.0.0",
|
|
74
|
+
"http-server": "^14.1.1",
|
|
75
|
+
"javascript-obfuscator": "^5.2.1",
|
|
76
|
+
"rimraf": "^5.0.0",
|
|
77
|
+
"tsup": "^8.2.4",
|
|
78
|
+
"typescript": "^5.6.2",
|
|
79
|
+
"cross-env": "^7.0.3"
|
|
80
|
+
},
|
|
81
|
+
"packageManager": "npm@10.0.0"
|
|
82
|
+
}
|