-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.08 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.08 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
{
"name": "wordpress-activitypub",
"description": "The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.",
"repository": {
"type": "git",
"url": "git+https://github.com/automattic/wordpress-activitypub.git"
},
"author": {
"name": "Matthias Pfefferle",
"web": "https://notiz.blog"
},
"scripts": {
"dev": "wp-scripts start --experimental-modules",
"build": "rm -rf build && wp-scripts format && wp-scripts build --experimental-modules",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"test:unit": "wp-scripts test-unit-js",
"test:unit:watch": "wp-scripts test-unit-js --watch",
"test:unit:debug": "wp-scripts --inspect-brk test-unit-js --runInBand --no-cache",
"test:e2e": "wp-scripts test-playwright --config tests/e2e/playwright.config.js",
"test:e2e:debug": "wp-scripts test-playwright --config tests/e2e/playwright.config.js --debug",
"env": "wp-env",
"env-start": "wp-env start",
"env-stop": "wp-env stop",
"env-test": "wp-env run tests-cli --env-cwd=\"wp-content/plugins/activitypub\" vendor/bin/phpunit",
"release": "node bin/release.js",
"prepare": "git config core.hooksPath .githooks"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/automattic/wordpress-activitypub/issues"
},
"homepage": "https://github.com/automattic/wordpress-activitypub#readme",
"devDependencies": {
"@playwright/test": "^1.57.0",
"@tanstack/react-router": "^1.143.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@wordpress/api-fetch": "^7.36.0",
"@wordpress/block-editor": "^15.7.0",
"@wordpress/blocks": "^15.9.0",
"@wordpress/commands": "^1.34.0",
"@wordpress/components": "^30.6.0",
"@wordpress/compose": "^7.32.0",
"@wordpress/core-data": "^7.36.0",
"@wordpress/data": "^10.33.0",
"@wordpress/data-controls": "^4.34.0",
"@wordpress/dataviews": "^11.0.0",
"@wordpress/date": "^5.33.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.36.0",
"@wordpress/dom": "^4.36.0",
"@wordpress/dom-ready": "^4.36.0",
"@wordpress/e2e-test-utils-playwright": "^1.37.0",
"@wordpress/edit-post": "^8.36.0",
"@wordpress/editor": "^14.33.2",
"@wordpress/element": "^6.0.0",
"@wordpress/env": "^10.36.0",
"@wordpress/html-entities": "^4.36.0",
"@wordpress/i18n": "^6.0.0",
"@wordpress/icons": "^11.4.0",
"@wordpress/interactivity": "^6.33.0",
"@wordpress/interface": "^9.17.0",
"@wordpress/keyboard-shortcuts": "^5.34.0",
"@wordpress/keycodes": "^4.37.0",
"@wordpress/notices": "^5.33.0",
"@wordpress/plugins": "^7.36.0",
"@wordpress/preferences": "^4.32.0",
"@wordpress/prettier-config": "^4.36.0",
"@wordpress/primitives": "^4.37.0",
"@wordpress/scripts": "^31.1.0",
"@wordpress/url": "^4.34.0",
"@wordpress/viewport": "^6.32.0",
"@wordpress/views": "^1.3.0",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"prettier": "npm:wp-prettier@^3.0.3"
}
}