-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.99 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.99 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
{
"name": "pixelguide",
"version": "0.1.0",
"type": "module",
"description": "A lightweight JavaScript SDK for user onboarding and product tours",
"main": "dist/pixelguide.js",
"module": "dist/pixelguide.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:types && npm run build:iife && npm run build:esm",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"build:iife": "esbuild src/index.ts --bundle --format=iife --global-name=PixelGuide --outfile=dist/pixelguide.js --minify",
"build:esm": "esbuild src/index.ts --bundle --format=esm --outfile=dist/pixelguide.esm.js --minify",
"dev": "esbuild src/index.ts --bundle --format=iife --global-name=PixelGuide --outfile=dist/pixelguide.js --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"lint:check": "eslint src test --max-warnings 0",
"prepublishOnly": "npm run lint:check && npm test && npm run build"
},
"keywords": [
"sdk",
"javascript",
"pixelguide",
"user-onboarding",
"product-tours",
"tooltips",
"userflow",
"shadow-dom"
],
"author": "",
"license": "MIT",
"dependencies": {
"@floating-ui/dom": "^1.5.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitest/coverage-v8": "^1.1.0",
"esbuild": "^0.19.11",
"eslint": "^9.39.2",
"happy-dom": "^12.10.3",
"typescript": "^5.3.3",
"typescript-eslint": "^8.52.0",
"vitest": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windmotion-io/pixelguidejs-sdk.git"
},
"bugs": {
"url": "https://github.com/windmotion-io/pixelguidejs-sdk.git/issues"
},
"homepage": "https://github.com/windmotion-io/pixelguidejs-sdk.git#readme"
}