-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.92 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.92 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
{
"name": "mashlib",
"version": "2.1.3",
"description": "Data mashup library",
"main": "dist/mashlib.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 && npm run build-dist && npm run postbuild-js",
"build:ghpages": "npm run clean && npm run build-version && npm run typecheck && PUBLIC_PATH=/mashlib/dist/ npm run build-dist && npm run postbuild-js",
"build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
"build-dist": "webpack --progress --mode=production",
"postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
"lint": "eslint",
"lint-fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"test": "echo no jest tests",
"prepublishOnly": "npm run lint && npm run build && npm run bundlesize",
"bundlesize": "bundlesize",
"preversion": "npm run lint && npm run typecheck && npm test",
"postpublish": "git push origin main --follow-tags",
"watch": "npm run build-version && webpack --watch",
"start": "npm run build-version && webpack serve --config webpack.config.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidOS/mashlib.git"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"panes",
"linked",
"data",
"browser"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solidos/mashlib/issues"
},
"homepage": "https://github.com/solidos/mashlib",
"dependencies": {
"rdflib": "^2.3.5",
"solid-logic": "^4.0.3",
"solid-panes": "^4.2.3",
"solid-ui": "^3.0.4"
},
"overrides": {
"rdflib": "$rdflib",
"solid-logic": "$solid-logic",
"solid-ui": "$solid-ui"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@typescript-eslint/parser": "^8.56.1",
"@webpack-cli/serve": "^3.0.1",
"babel-loader": "^10.0.0",
"bundlesize2": "^0.0.35",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.4",
"eslint": "^9.39.3",
"file-loader": "^6.2.0",
"globals": "^17.3.0",
"html-webpack-plugin": "^5.6.6",
"mini-css-extract-plugin": "^2.10.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"terser-webpack-plugin": "^5.3.16",
"typescript": "^5.9.3",
"url-loader": "^4.1.1",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"bundlesize": [
{
"path": "./dist/*.min.js",
"maxSize": "2 MB",
"compression": "brotli"
},
{
"path": "./dist/*[^.min].js",
"maxSize": "3 MB",
"compression": "brotli"
}
]
}