-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.28 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
{
"name": "driver.js",
"license": "MIT",
"private": false,
"version": "1.7.0",
"packageManager": "pnpm@11.9.0",
"main": "./dist/driver.js.cjs",
"module": "./dist/driver.js.mjs",
"types": "./dist/driver.js.d.ts",
"homepage": "https://driverjs.com",
"repository": {
"type": "git",
"url": "git+https://github.com/nilbuild/driver.js.git"
},
"author": "Kamran Ahmed <kamranahmed.se@gmail.com>",
"bugs": {
"url": "https://github.com/nilbuild/driver.js/issues"
},
"exports": {
".": {
"import": {
"types": "./dist/driver.js.d.mts",
"default": "./dist/driver.js.mjs"
},
"require": {
"types": "./dist/driver.js.d.cts",
"default": "./dist/driver.js.cjs"
}
},
"./dist/driver.css": {
"import": "./dist/driver.css",
"require": "./dist/driver.css",
"default": "./dist/driver.css"
}
},
"scripts": {
"dev": "pnpm --dir playground dev",
"playground:install": "pnpm --dir playground install",
"build": "tsc && vite build && node scripts/postbuild.mjs",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint:package": "publint && attw --pack . --exclude-entrypoints ./dist/driver.css",
"format": "prettier . --write",
"release": "GITHUB_TOKEN=$(gh auth token) release-it",
"prepublishOnly": "pnpm build && pnpm lint:package"
},
"files": [
"!tests/**/*",
"!docs/**/*",
"dist/**/*",
"!dist/**/*.js.map"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@microsoft/api-extractor": "^7.58.9",
"@release-it/keep-a-changelog": "^7.1.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "^4.1.9",
"jsdom": "^29.1.1",
"postcss": "^8.5.15",
"postcss-scss": "^4.0.9",
"prettier": "^3.8.4",
"publint": "^0.3.21",
"release-it": "^20.2.0",
"terser": "^5.48.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.9"
},
"keywords": [
"driver.js",
"driver",
"tour",
"guide",
"overlay",
"tooltip",
"walkthrough",
"product tour",
"product walkthrough",
"product guide",
"product tutorial",
"product demo",
"modal",
"lightbox"
]
}