-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1.96 KB
/
package.json
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
{
"author": "buddypress",
"bugs": {
"url": "https://github.com/buddypress/bp-attachments/issues"
},
"description": "BP Attachments is a BuddyPress component to manage your community media.",
"engines": {
"node": ">=16.19.1",
"npm": ">=8.19.3 <9"
},
"scripts": {
"start": "parcel src/media-library/index.js --dist-dir bp-attachments/js/media-library/",
"build": "parcel build src/media-library/index.js --dist-dir bp-attachments/js/media-library/",
"dev:avatar-editor": "parcel src/avatar-editor/index.js --dist-dir bp-attachments/js/avatar-editor/",
"build:avatar-editor": "parcel build src/avatar-editor/index.js --dist-dir bp-attachments/js/avatar-editor/",
"dev:blocks": "parcel src/blocks/*-attachment/*s/index.*s --dist-dir bp-attachments/assets/blocks/",
"build:blocks": "parcel build src/blocks/*-attachment/*s/index.*s --dist-dir bp-attachments/assets/blocks/",
"dev:admin": "parcel src/admin/index.js --dist-dir bp-attachments/js/admin/",
"build:admin": "parcel build src/admin/index.js --dist-dir bp-attachments/js/admin/",
"dev:front": "parcel src/front-end/*.js --dist-dir bp-attachments/js/front-end/",
"build:front": "parcel build src/front-end/*.js --dist-dir bp-attachments/js/front-end/",
"pot": "wp i18n make-pot . --exclude=\".cache,node_modules,tests\" languages/bp-attachments.pot",
"concat-json": "php ./bin/concat-json.php"
},
"keywords": [
"buddypress",
"community",
"attachments",
"media"
],
"homepage": "https://github.com/buddypress/bp-attachments",
"license": "GPL-2.0+",
"name": "bp-attachments",
"repository": {
"type": "git",
"url": "https://github.com/buddypress/bp-attachments.git"
},
"version": "1.3.0-alpha",
"devDependencies": {
"@parcel/transformer-sass": "^2.6.2",
"@wordpress/babel-preset-default": "^6.15.0",
"@wordpress/browserslist-config": "^4.1.2",
"parcel": "^2.6.2"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"dependencies": {
"react-easy-crop": "^4.4.1"
}
}