-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.3 KB
/
package.json
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
{
"name": "boarding.js",
"private": false,
"version": "0.0.0-development",
"type": "module",
"main": "dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
},
"./styles/main.css": "./styles/main.css",
"./styles/themes/basic.css": "./styles/themes/basic.css"
},
"keywords": [
"tour",
"intro",
"onboarding",
"walkthrough",
"spotlight",
"popover",
"overlay",
"overlays",
"user-onboarding",
"feature-introductions",
"focus-shifters"
],
"files": [
"dist/**",
"!**/.DS_Store",
"!dist/favicons/**",
"!dist/images/**",
"styles/**"
],
"scripts": {
"dev": "vite",
"build": "vite build --config lib-build.vite.config.js && tsc src/lib/main.ts --declaration --emitDeclarationOnly --esModuleInterop --outDir dist ",
"build:gh-page": "vite build --base=/boarding.js",
"preview": "vite preview",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"highlight.js": "^11.6.0",
"semantic-release": "^19.0.5",
"typescript": "^4.6.4",
"vite": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/josias-r/boarding.js.git"
}
}