-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@clickalong/sdk",
"version": "0.2.0",
"description": "Typed loader for the Clickalong support widget, guided tours, and confirmed host actions.",
"keywords": [
"clickalong",
"customer-support",
"support-widget",
"guided-tours",
"javascript",
"typescript",
"sdk",
"react",
"vite"
],
"homepage": "https://clickalong.ai",
"author": {
"name": "Clickalong",
"url": "https://clickalong.ai"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clickalong/sdk.git"
},
"bugs": {
"url": "https://github.com/clickalong/sdk/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"check:package": "publint",
"prepack": "npm run build",
"prepublishOnly": "npm run verify",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm run test && npm run build && npm run check:package"
},
"devDependencies": {
"happy-dom": "^20.0.0",
"publint": "^0.3.21",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^4.1.10"
},
"overrides": {
"esbuild": "^0.28.1"
},
"allowScripts": {
"esbuild@0.28.1": true,
"fsevents@2.3.3": true
}
}