-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.7 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
{
"name": "activitystreams-pane",
"version": "1.0.2",
"description": "",
"main": "lib/index.js",
"files": [
"/lib",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf lib storybook-static",
"build": "npm run clean && npm run typecheck && npm run build-js && npm run build-storybook",
"build-js": "tsc",
"lint": "eslint",
"lint-fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"typecheck-test": "tsc --noEmit -p tsconfig.test.json",
"test": "jest",
"test-e2e": "jest ./e2e-tests --runInBand --forceExit",
"prepublishOnly": "npm run test && npm run build",
"preversion": "npm run lint && npm run typecheck && npm test",
"postversion": "git push origin main --follow-tags",
"start": "molid & webpack serve --config webpack.dev.config.mjs --open",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidOS/activitystreams-pane.git"
},
"keywords": [
"solid",
"activitystreams",
"activitypub",
"pane",
"solid-panes",
"solidos"
],
"author": {
"name": "Angelo Veltens",
"email": "angelo.veltens@online.de",
"url": "https://angelo.veltens.org/profile/card#me"
},
"license": "MIT",
"dependencies": {
"pane-registry": "^3.0.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-jss": "^10.10.0",
"timeago.js": "^4.0.2"
},
"peerDependencies": {
"rdflib": "^2.3.6",
"solid-logic": "^4.0.6",
"solid-ui": "^3.0.5"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@chromatic-com/storybook": "^5.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@storybook/addon-docs": "^10.2.0",
"@storybook/addon-links": "^10.2.0",
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
"@storybook/react-webpack5": "^10.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.53.1",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^10.2.0",
"globals": "^17.1.0",
"html-webpack-plugin": "^5.6.6",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"molid": "^0.3.1",
"neostandard": "^0.13.0",
"storybook": "^10.2.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^7.0.0",
"webpack-dev-server": "^5.2.3"
}
}