solid-shim 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Version information for solid-shim
3
+ */
4
+ export declare const versionInfo: {
5
+ name: string;
6
+ version: string;
7
+ description: string;
8
+ buildDate: string;
9
+ repository: string;
10
+ };
11
+ export default versionInfo;
12
+ //# sourceMappingURL=versionInfo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"versionInfo.d.ts","sourceRoot":"","sources":["../src/versionInfo.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,WAAW;;;;;;CAMvB,CAAA;AAED,eAAe,WAAW,CAAA"}
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "solid-shim",
3
+ "version": "0.1.0",
4
+ "description": "Minimal Solid data browser using solid-panes-jss with solid-oidc authentication",
5
+ "type": "module",
6
+ "main": "dist/solid-shim.js",
7
+ "module": "dist/solid-shim.esm.js",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/solid-shim.esm.js",
12
+ "default": "./dist/solid-shim.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist/",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "clean": "rm -rf dist",
22
+ "build": "npm run clean && npm run build-dist",
23
+ "build-dist": "webpack --progress",
24
+ "start": "webpack serve --open",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/JavaScriptSolidServer/solid-shim.git"
30
+ },
31
+ "keywords": [
32
+ "solid",
33
+ "data-browser",
34
+ "mashlib",
35
+ "solid-oidc",
36
+ "decentralized"
37
+ ],
38
+ "author": "",
39
+ "license": "MIT",
40
+ "bugs": {
41
+ "url": "https://github.com/JavaScriptSolidServer/solid-shim/issues"
42
+ },
43
+ "homepage": "https://github.com/JavaScriptSolidServer/solid-shim",
44
+ "dependencies": {
45
+ "pane-registry": "^3.0.0",
46
+ "rdflib": "^2.3.0",
47
+ "solid-namespace": "^0.5.4"
48
+ },
49
+ "devDependencies": {
50
+ "html-webpack-plugin": "^5.6.3",
51
+ "jose": "^6.1.3",
52
+ "terser-webpack-plugin": "^5.3.15",
53
+ "ts-loader": "^9.5.4",
54
+ "typescript": "^5.9.2",
55
+ "webpack": "^5.103.0",
56
+ "webpack-cli": "^6.0.1",
57
+ "webpack-dev-server": "^5.2.2"
58
+ }
59
+ }