@simplr-ai/vue 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/LICENSE +21 -0
- package/README.md +261 -0
- package/dist/index.cjs +617 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +385 -0
- package/dist/index.d.ts +385 -0
- package/dist/index.js +536 -0
- package/dist/index.js.map +1 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@simplr-ai/vue",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Idiomatic Vue 3 adapter for the Simplr platform — composables, components and directives wrapping the @simplr-ai/js browser core (device fingerprint, behavioral biometrics, fraud/order checks, feature flags, RUM, profiles, AI delegation).",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Simplr",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.cjs",
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js",
|
|
15
|
+
"require": "./dist/index.cjs"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup",
|
|
24
|
+
"dev": "tsup --watch",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"test:watch": "vitest",
|
|
27
|
+
"typecheck": "tsc --noEmit"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"vue",
|
|
31
|
+
"vue3",
|
|
32
|
+
"composables",
|
|
33
|
+
"fraud-detection",
|
|
34
|
+
"device-fingerprinting",
|
|
35
|
+
"behavioral-biometrics",
|
|
36
|
+
"feature-flags",
|
|
37
|
+
"rum",
|
|
38
|
+
"ai-delegation",
|
|
39
|
+
"simplr"
|
|
40
|
+
],
|
|
41
|
+
"homepage": "https://docs.simplr.so/docs/sdks/",
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"vue": "^3.3",
|
|
44
|
+
"@simplr-ai/js": "1.1.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@simplr-ai/js": "1.1.0",
|
|
48
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
49
|
+
"@vue/test-utils": "^2.4.0",
|
|
50
|
+
"jsdom": "^24.0.0",
|
|
51
|
+
"tsup": "^8.0.1",
|
|
52
|
+
"typescript": "^5.3.3",
|
|
53
|
+
"unplugin-vue": "^7.2.0",
|
|
54
|
+
"vitest": "^1.6.0",
|
|
55
|
+
"vue": "^3.4.0"
|
|
56
|
+
}
|
|
57
|
+
}
|