@tryghost/activitypub 1.0.9

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.
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@tryghost/activitypub",
3
+ "version": "1.0.9",
4
+ "license": "MIT",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/TryGhost/Ghost/tree/main/apps/activitypub"
8
+ },
9
+ "author": "Ghost Foundation",
10
+ "files": [
11
+ "LICENSE",
12
+ "README.md",
13
+ "dist/"
14
+ ],
15
+ "main": "./dist/activitypub.umd.cjs",
16
+ "module": "./dist/activitypub.js",
17
+ "private": false,
18
+ "scripts": {
19
+ "dev": "vite build --watch",
20
+ "dev:start": "vite",
21
+ "build": "tsc && vite build",
22
+ "lint": "yarn run lint:code && yarn run lint:test",
23
+ "lint:code": "eslint --ext .js,.ts,.cjs,.tsx --cache src",
24
+ "lint:test": "eslint -c test/.eslintrc.cjs --ext .js,.ts,.cjs,.tsx --cache test",
25
+ "test:unit": "tsc --noEmit && vitest run",
26
+ "test:acceptance": "NODE_OPTIONS='--experimental-specifier-resolution=node --no-warnings' VITE_TEST=true playwright test",
27
+ "test:acceptance:slowmo": "TIMEOUT=100000 PLAYWRIGHT_SLOWMO=100 yarn test:acceptance --headed",
28
+ "test:acceptance:full": "ALL_BROWSERS=1 yarn test:acceptance",
29
+ "preview": "vite preview"
30
+ },
31
+ "devDependencies": {
32
+ "@playwright/test": "1.55.1",
33
+ "@testing-library/react": "14.3.1",
34
+ "@types/jest": "29.5.14",
35
+ "@types/react": "18.3.26",
36
+ "@types/react-dom": "18.3.7",
37
+ "jest": "29.7.0",
38
+ "ts-jest": "29.4.4",
39
+ "vite": "5.4.20",
40
+ "vitest": "1.6.1"
41
+ },
42
+ "nx": {
43
+ "targets": {
44
+ "build": {
45
+ "dependsOn": [
46
+ "^build"
47
+ ]
48
+ },
49
+ "dev": {
50
+ "dependsOn": [
51
+ "^build"
52
+ ]
53
+ },
54
+ "test:unit": {
55
+ "dependsOn": [
56
+ "^build",
57
+ "test:unit"
58
+ ]
59
+ },
60
+ "test:acceptance": {
61
+ "dependsOn": [
62
+ "^build",
63
+ "test:acceptance"
64
+ ]
65
+ }
66
+ }
67
+ },
68
+ "dependencies": {
69
+ "@radix-ui/react-form": "0.1.7",
70
+ "@tryghost/admin-x-framework": "0.0.0",
71
+ "@tryghost/shade": "0.0.0",
72
+ "clsx": "2.1.1",
73
+ "html2canvas-objectfit-fix": "1.2.0",
74
+ "react": "18.3.1",
75
+ "react-dom": "18.3.1",
76
+ "use-debounce": "10.0.6"
77
+ }
78
+ }