-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 977 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 977 Bytes
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
{
"name": "target-highlight",
"homepage": "https://target-highlight.graphieros.com/",
"private": false,
"version": "0.10.0",
"type": "module",
"description": "Highlight DOM elements by overlaying the rest of the page",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"files": [
"dist"
],
"keywords": [
"highlight",
"overlay",
"dom",
"tour",
"spotlight"
],
"author": "Alec Lloyd Probert",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/graphieros/target-highlight.git"
},
"main": "dist/target-highlight.umd.cjs",
"module": "dist/target-highlight.js",
"exports": {
".": {
"import": "./dist/target-highlight.js",
"require": "./dist/target-highlight.umd.cjs"
}
},
"devDependencies": {
"typescript": "~5.7.2",
"vite": "^6.3.4",
"vite-plugin-dts": "^4.5.3"
}
}