98 lines
No EOL
3.2 KiB
JSON
98 lines
No EOL
3.2 KiB
JSON
{
|
|
"name": "shepherd.js",
|
|
"version": "14.5.1",
|
|
"description": "Guide your users through a tour of your app.",
|
|
"keywords": [
|
|
"site tour",
|
|
"tour",
|
|
"tutorial",
|
|
"shepherd"
|
|
],
|
|
"homepage": "https://shepherdjs.dev",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/shepherd-pro/shepherd.git"
|
|
},
|
|
"license": "AGPL-3.0",
|
|
"authors": [
|
|
"Robbie Wagner <rwwagner90@gmail.com>",
|
|
"Chuck Carpenter <chuck@shipshape.io>"
|
|
],
|
|
"main": "./dist/cjs/shepherd.cjs",
|
|
"module": "./dist/esm/shepherd.mjs",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/esm/shepherd.d.mts",
|
|
"default": "./dist/esm/shepherd.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/cjs/shepherd.d.cts",
|
|
"default": "./dist/cjs/shepherd.cjs"
|
|
}
|
|
},
|
|
"./dist/css/shepherd.css": "./dist/css/shepherd.css"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@floating-ui/dom": "^1.7.0",
|
|
"@scarf/scarf": "^1.4.0",
|
|
"deepmerge-ts": "^7.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@arethetypeswrong/cli": "^0.15.3",
|
|
"@babel/core": "^7.26.0",
|
|
"@babel/plugin-transform-typescript": "^7.27.0",
|
|
"@babel/preset-env": "^7.25.8",
|
|
"@babel/preset-typescript": "^7.27.1",
|
|
"@rollup/plugin-babel": "^6.0.4",
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
"@rollup/plugin-replace": "^6.0.2",
|
|
"autoprefixer": "^10.4.21",
|
|
"cssnano": "^7.0.6",
|
|
"dts-bundle-generator": "^9.5.1",
|
|
"eslint-plugin-svelte": "^2.46.1",
|
|
"execa": "^9.3.1",
|
|
"postcss": "^8.5.6",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-svelte": "^3.3.3",
|
|
"renamer": "^5.0.0",
|
|
"replace": "^1.2.2",
|
|
"rimraf": "^6.0.1",
|
|
"rollup": "^4.40.2",
|
|
"rollup-plugin-analyzer": "^4.0.0",
|
|
"rollup-plugin-filesize": "^10.0.0",
|
|
"rollup-plugin-license": "^3.5.3",
|
|
"rollup-plugin-livereload": "^2.0.5",
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
"rollup-plugin-serve": "^2.0.2",
|
|
"rollup-plugin-svelte": "^7.2.0",
|
|
"rollup-plugin-visualizer": "^5.14.0",
|
|
"svelte": "^4.2.19",
|
|
"svelte-preprocess": "^6.0.3",
|
|
"svelte2tsx": "^0.7.8",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"engines": {
|
|
"node": "18.* || >= 20"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm clean && rollup -c",
|
|
"clean": "rimraf ./dist ./tmp",
|
|
"esdoc": "esdoc",
|
|
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
|
|
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
|
|
"lint:js": "eslint . --cache",
|
|
"lint:js:fix": "eslint . --fix",
|
|
"lint:prettier": "prettier --check '**/*.{js,svelte,ts}'",
|
|
"lint:prettier:fix": "prettier --write '**/*.{js,svelte,ts}'",
|
|
"types:check": "pnpm types:check:cjs && pnpm types:check:esm && pnpm types:check:attw",
|
|
"types:check:attw": "pnpm attw --pack . --exclude-entrypoints ./dist/css/shepherd.css",
|
|
"types:check:cjs": "pnpm tsc --module commonjs --moduleResolution node10 --verbatimModuleSyntax false --noEmit true --emitDeclarationOnly false",
|
|
"types:check:esm": "pnpm tsc --module esnext --moduleResolution bundler --noEmit true --emitDeclarationOnly false",
|
|
"watch": "pnpm clean && rollup -c --environment DEVELOPMENT --watch"
|
|
}
|
|
} |