-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3 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
{
"name": "solid-panes",
"version": "4.4.2-5",
"description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist src/versionInfo.ts",
"build": "npm run clean && npm run build-version && npm run typecheck && vite build && npm run postbuild",
"build-version": "bash timestamp.sh > src/versionInfo.ts && ./node_modules/.bin/eslint 'src/versionInfo.ts' --fix",
"postbuild": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
"lint": "eslint",
"lint-fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"typecheck-test": "tsc --noEmit -p tsconfig.test.json",
"test": "npm run typecheck-test && vitest run",
"test-coverage": "vitest run --coverage",
"prepublishOnly": "npm run build && npm run lint && npm test",
"preversion": "npm run lint && npm run typecheck && npm test",
"watch": "npm run build-version && vite build --watch",
"start": "npm run build-version && vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidOS/solid-panes.git"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"panes",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidOS/solid-panes/issues"
},
"homepage": "https://github.com/SolidOS/solid-panes",
"dependencies": {
"@solid/better-simple-slideshow": "^0.1.0",
"activitystreams-pane": "1.0.3-4",
"chat-pane": "3.0.4-2",
"contacts-pane": "3.2.1-5",
"dompurify": "^3.4.4",
"folder-pane": "3.1.1-2",
"issue-pane": "3.0.3-1",
"lit-html": "^3.3.2",
"marked": "^18.0.3",
"meeting-pane": "3.0.3-1",
"mime-types": "^3.0.2",
"pane-registry": "3.1.2-2",
"profile-pane": "3.2.3-3",
"rdflib": "2.4.0",
"solid-logic": "4.0.8-1",
"solid-namespace": "^0.5.4",
"solid-ui": "3.1.3-13",
"source-pane": "3.1.1-4"
},
"devDependencies": {
"@iconify/json": "2.2.494",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^22.20.0",
"@typescript-eslint/parser": "^8.59.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.4",
"globals": "^17.6.0",
"jsdom": "^28.1.0",
"neostandard": "^0.13.0",
"solidos-toolkit": "dev",
"typescript": "^6.0.3",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.16",
"vitest": "^4.0.18"
},
"solidosDependencies": [
"rdflib",
"solid-logic",
"solid-ui",
"pane-registry",
"activitystreams-pane",
"chat-pane",
"contacts-pane",
"folder-pane",
"issue-pane",
"meeting-pane",
"profile-pane",
"source-pane"
]
}