-
-
Notifications
You must be signed in to change notification settings - Fork 652
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.16 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.16 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "shepherd.js",
"version": "15.2.2",
"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/shipshapecode/shepherd.git"
},
"license": "AGPL-3.0",
"authors": [
"Robbie Wagner <rwwagner90@gmail.com>",
"Chuck Carpenter <chuck@shipshape.io>"
],
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"main": "./dist/cjs/shepherd.cjs",
"module": "./dist/js/shepherd.mjs",
"exports": {
".": {
"import": {
"types": "./dist/js/shepherd.d.mts",
"default": "./dist/js/shepherd.mjs"
},
"require": {
"types": "./dist/cjs/shepherd.d.cts",
"default": "./dist/cjs/shepherd.cjs"
}
},
"./dist/*": "./dist/*"
},
"type": "module",
"scripts": {
"build": "pnpm clean && rollup -c",
"clean": "rimraf ./dist ./tmp",
"cy:open": "cypress open --config-file test/cypress/cypress.config.js",
"cy:run:chrome": "cypress run --browser chrome --config-file test/cypress/cypress.config.js",
"cypress:install": "cypress install",
"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,ts}'",
"lint:prettier:fix": "prettier --write '**/*.{js,ts}'",
"prepack": "pnpm build",
"start-test-server": "http-server . -p 9002",
"test": "vitest",
"test:all": "pnpm test:unit:ci && pnpm test:cy:ci",
"test:ci": "pnpm test:unit:ci && pnpm test:cy:ci",
"test:cy:ci": "start-server-and-test start-test-server http://127.0.0.1:9002 cy:run:chrome",
"test:cy:watch": "start-server-and-test start-test-server http://127.0.0.1:9002 cy:open",
"test:unit": "vitest",
"test:unit:ci": "vitest run --coverage",
"test:unit:watch": "vitest",
"types:check": "pnpm types:check:esm && pnpm types:check:attw",
"types:check:attw": "pnpm attw --pack . --exclude-entrypoints ./dist/css/shepherd.css",
"types:check:esm": "pnpm tsc --module esnext --moduleResolution bundler --noEmit true --emitDeclarationOnly false",
"view-coverage": "http-server -p 9003 ./test/coverage/lcov-report -o",
"watch": "pnpm clean && rollup -c --environment DEVELOPMENT --watch"
},
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"deepmerge-ts": "^7.1.5"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@babel/core": "^7.29.0",
"@babel/plugin-transform-typescript": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@vitest/coverage-v8": "^4.1.1",
"@vitest/expect": "^4.1.0",
"autoprefixer": "^10.4.27",
"chai": "^6.2.2",
"cssnano": "^7.1.3",
"cypress": "^15.13.0",
"cypress-plugin-tab": "^1.0.5",
"del": "^8.0.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^10.1.0",
"eslint-plugin-cypress": "^6.2.1",
"eslint-plugin-vitest": "^0.5.4",
"execa": "^9.6.1",
"globals": "^17.4.0",
"happy-dom": "^20.8.8",
"http-server": "^14.1.1",
"lodash": "^4.17.23",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"replace": "^1.2.2",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^6.1.3",
"rollup": "^4.60.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-license": "^3.7.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.3",
"rollup-plugin-visualizer": "^7.0.1",
"start-server-and-test": "^2.1.5",
"typescript": "^5.9.3",
"vite": "^8.0.2",
"vitest": "^4.1.1"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">= 20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}