-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "rsd-wordpress",
"version": "1.0.0",
"description": "Displays projects and software information from the Research Software Directory API.",
"author": "Research Software Directory / eScience Center",
"homepage": "https://github.com/research-software-directory/rsd-wordpress/",
"license": "Apache-2.0",
"private": true,
"main": "src/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/research-software-directory/rsd-wordpress.git"
},
"bugs": {
"url": "https://github.com/research-software-directory/rsd-wordpress/issues"
},
"scripts": {
"dev": "concurrently \"pnpm run dev:public\" \"pnpm run dev:admin\"",
"dev:public": "NODE_ENV=development ENTRY_NAME=rsd-wordpress ENTRY_FILE=src/index.js vite build --watch",
"dev:admin": "NODE_ENV=development ENTRY_NAME=rsd-wordpress-admin ENTRY_FILE=src/index-admin.js vite build --watch",
"dev:build": "NODE_ENV=development pnpm run build:public && NODE_ENV=development pnpm run build:admin",
"build": "NODE_ENV=production pnpm run build:public && NODE_ENV=production pnpm run build:admin",
"build:public": "ENTRY_NAME=rsd-wordpress ENTRY_FILE=src/index.js vite build",
"build:admin": "ENTRY_NAME=rsd-wordpress-admin ENTRY_FILE=src/index-admin.js vite build",
"serve": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"export": "pnpm run build && mkdir -p export && git archive --format zip --output export/rsd-wordpress.zip ${GIT_TAG:-HEAD} && zip -ur export/rsd-wordpress.zip dist/",
"dev:export": "pnpm run dev:build && mkdir -p export && git archive --format zip --output export/rsd-wordpress.zip ${GIT_TAG:-HEAD} && zip -ur export/rsd-wordpress.zip dist/"
},
"keywords": [
"research software directory",
"wordpress",
"plugin",
"research",
"software",
"projects",
"science",
"api",
"escience"
],
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
"devDependencies": {
"@babel/preset-env": "^7.25.7",
"@rollup/plugin-babel": "^6.0.4",
"@wordpress/eslint-plugin": "^17.13.0",
"@wordpress/prettier-config": "^3.15.0",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-plugin-compat": "^4.2.0",
"lightningcss": "^1.27.0",
"path": "^0.12.7",
"postcss": "^8.4.47",
"prettier": "npm:wp-prettier@^3.0.3",
"vite": "^5.4.8"
},
"dependencies": {
"tom-select": "^2.3.1"
}
}