-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 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
{
"name": "@rolemodel/spider",
"description": "Shared high level web components for RoleModel Software and beyond",
"packageManager": "yarn@4.12.0",
"version": "0.0.7",
"author": "RoleModel Software",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js"
},
"./dist/components/*": "./dist/components/*",
"./dist/events/*": "./dist/events/*",
"./dist/assets/*": "./dist/assets/*"
},
"files": [
"dist"
],
"keywords": [
"web components",
"custom elements",
"components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RoleModel/spider.git"
},
"bugs": {
"url": "https://github.com/RoleModel/spider/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@lit/context": "^1.1.6",
"lit": "^3.3.2",
"pdfjs-dist": "^5.4.624"
},
"devDependencies": {
"@lit/context": "^1.1.6",
"@testing-library/dom": "^10.4.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"happy-dom": "^20.5.0",
"jsdom": "^28.0.0",
"lit": "^3.3.2",
"vite": "^7.2.4",
"vitest": "^4.0.18"
},
"homepage": "https://github.com/RoleModel/spider#readme",
"publishConfig": {
"@RoleModel:registry": "https://npm.pkg.github.com"
}
}