siteguide.js 0.9.2 → 0.9.4
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/dist/css/siteguide.css +1 -1
- package/dist/index.d.ts +12 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +371 -353
- package/package.json +71 -71
package/package.json
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "siteguide.js",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "Open source library made with vanilla Javascript and CSS to help you build website guides and onboarding tours.",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"siteguide",
|
|
8
|
-
"siteguide.js",
|
|
9
|
-
"site tour",
|
|
10
|
-
"tour",
|
|
11
|
-
"tutorial",
|
|
12
|
-
"tour",
|
|
13
|
-
"guide",
|
|
14
|
-
"onboarding tour"
|
|
15
|
-
],
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/handeh0ch/siteguide.js.git"
|
|
19
|
-
},
|
|
20
|
-
"author": {
|
|
21
|
-
"name": "Borislav Shelanov",
|
|
22
|
-
"email": "borislav.shelanov@gmail.com"
|
|
23
|
-
},
|
|
24
|
-
"main": "./dist/index.cjs",
|
|
25
|
-
"module": "./dist/index.mjs",
|
|
26
|
-
"types": "./dist/index.d.ts",
|
|
27
|
-
"type": "module",
|
|
28
|
-
"exports": {
|
|
29
|
-
".": {
|
|
30
|
-
"types": "./dist/index.d.ts",
|
|
31
|
-
"require": "./dist/index.js",
|
|
32
|
-
"import": "./dist/index.mjs",
|
|
33
|
-
"default": "./dist/index.mjs"
|
|
34
|
-
},
|
|
35
|
-
"./dist/css/siteguide.css": "./dist/css/siteguide.css"
|
|
36
|
-
},
|
|
37
|
-
"files": [
|
|
38
|
-
"dist"
|
|
39
|
-
],
|
|
40
|
-
"private": false,
|
|
41
|
-
"publishConfig": {
|
|
42
|
-
"registry": "https://registry.npmjs.org/",
|
|
43
|
-
"access": "public"
|
|
44
|
-
},
|
|
45
|
-
"scripts": {
|
|
46
|
-
"clean": "rimraf dist",
|
|
47
|
-
"dev": "vite build --watch",
|
|
48
|
-
"start": "vite --host --open",
|
|
49
|
-
"publish": "npm run build && npm publish",
|
|
50
|
-
"build": "npm run clean && vite build",
|
|
51
|
-
"rollup:dts": "api-extractor run",
|
|
52
|
-
"append:dts": "npm run rollup:dts",
|
|
53
|
-
"lint:scripts": "eslint ./src --ext .ts",
|
|
54
|
-
"lint:styles": "stylelint ./**/*.{css,scss}",
|
|
55
|
-
"format:scripts": "prettier ./src --write",
|
|
56
|
-
"format:styles": "stylelint ./**/*.{css,scss} --fix",
|
|
57
|
-
"check-circular": "madge --circular --extensions ts ./src"
|
|
58
|
-
},
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"@floating-ui/dom": "^1.6.12"
|
|
61
|
-
},
|
|
62
|
-
"devDependencies": {
|
|
63
|
-
"@types/node": "^22.9.1",
|
|
64
|
-
"postcss": "^8.4.49",
|
|
65
|
-
"rollup": "^4.27.4",
|
|
66
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
67
|
-
"typescript": "^5.4.2",
|
|
68
|
-
"vite": "^5.4.10",
|
|
69
|
-
"vite-plugin-dts": "^4.3.0"
|
|
70
|
-
}
|
|
71
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "siteguide.js",
|
|
3
|
+
"version": "0.9.4",
|
|
4
|
+
"description": "Open source library made with vanilla Javascript and CSS to help you build website guides and onboarding tours.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"siteguide",
|
|
8
|
+
"siteguide.js",
|
|
9
|
+
"site tour",
|
|
10
|
+
"tour",
|
|
11
|
+
"tutorial",
|
|
12
|
+
"tour",
|
|
13
|
+
"guide",
|
|
14
|
+
"onboarding tour"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/handeh0ch/siteguide.js.git"
|
|
19
|
+
},
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "Borislav Shelanov",
|
|
22
|
+
"email": "borislav.shelanov@gmail.com"
|
|
23
|
+
},
|
|
24
|
+
"main": "./dist/index.cjs",
|
|
25
|
+
"module": "./dist/index.mjs",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"type": "module",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"require": "./dist/index.js",
|
|
32
|
+
"import": "./dist/index.mjs",
|
|
33
|
+
"default": "./dist/index.mjs"
|
|
34
|
+
},
|
|
35
|
+
"./dist/css/siteguide.css": "./dist/css/siteguide.css"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist"
|
|
39
|
+
],
|
|
40
|
+
"private": false,
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"registry": "https://registry.npmjs.org/",
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"clean": "rimraf dist",
|
|
47
|
+
"dev": "vite build --watch",
|
|
48
|
+
"start": "vite --host --open",
|
|
49
|
+
"publish": "npm run build && npm publish",
|
|
50
|
+
"build": "npm run clean && vite build",
|
|
51
|
+
"rollup:dts": "api-extractor run",
|
|
52
|
+
"append:dts": "npm run rollup:dts",
|
|
53
|
+
"lint:scripts": "eslint ./src --ext .ts",
|
|
54
|
+
"lint:styles": "stylelint ./**/*.{css,scss}",
|
|
55
|
+
"format:scripts": "prettier ./src --write",
|
|
56
|
+
"format:styles": "stylelint ./**/*.{css,scss} --fix",
|
|
57
|
+
"check-circular": "madge --circular --extensions ts ./src"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@floating-ui/dom": "^1.6.12"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/node": "^22.9.1",
|
|
64
|
+
"postcss": "^8.4.49",
|
|
65
|
+
"rollup": "^4.27.4",
|
|
66
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
67
|
+
"typescript": "^5.4.2",
|
|
68
|
+
"vite": "^5.4.10",
|
|
69
|
+
"vite-plugin-dts": "^4.3.0"
|
|
70
|
+
}
|
|
71
|
+
}
|