@aigc-kino/logger-sdk 1.3.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/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@aigc-kino/logger-sdk",
3
+ "version": "1.3.0",
4
+ "type": "module",
5
+ "description": "前端日志采集 SDK(浏览器端),支持 JS / Vue / 网络 / 性能 / 行为 / 业务日志上报,可对接 Log-collection-platform 日志网关。",
6
+ "license": "MIT",
7
+ "homepage": "https://vkino.cn",
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
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "dependencies": {},
26
+ "devDependencies": {
27
+ "tsup": "^8.3.0",
28
+ "typescript": "^5.6.3"
29
+ },
30
+ "scripts": {
31
+ "build": "node build-sdk.mjs",
32
+ "typecheck": "tsc --noEmit -p tsconfig.json"
33
+ }
34
+ }