-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.7 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
{
"name": "tribe-embed",
"version": "1.0.3",
"description": "Tribe Embed",
"author": "Modern Tribe <[email protected]>",
"license": "GPL-2.0-or-later",
"keywords": [],
"homepage": "https://github.com/moderntribe/tribe-embed#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/moderntribe/tribe-embed.git"
},
"bugs": {
"url": "https://github.com/moderntribe/tribe-embed/issues"
},
"browserslist": [
"last 2 versions",
"safari >= 16",
"ios >= 16",
"not op_mini all",
"not dead"
],
"engines": {
"node": "^18.16.0",
"npm": "^9.5.1"
},
"main": "index.js",
"config": {
"assetsDir": "./assets"
},
"devDependencies": {
"@wordpress/scripts": "^26.19.0",
"cssnano": "^6.0.1",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.2.0"
},
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build",
"format": "npm run format:assets && npm run format:configs",
"format:assets": "wp-scripts format $npm_package_config_assetsDir",
"format:configs": "wp-scripts format \"./*.{js,json}\"",
"lint": "npm run format && npm run lint:js:fix && npm run lint:css:fix && npm run lint:configs && npm run lint:pkg-json",
"lint:css": "wp-scripts lint-style \"$npm_package_config_assetsDir/**/*.pcss\"",
"lint:css:fix": "wp-scripts lint-style \"$npm_package_config_assetsDir/**/*.pcss\" --fix",
"lint:js": "wp-scripts lint-js \"$npm_package_config_assetsDir/**/*.js\"",
"lint:js:fix": "wp-scripts lint-js \"$npm_package_config_assetsDir/**/*.js\" --fix",
"lint:configs": "wp-scripts lint-js \"./*.js\"",
"lint:configs:fix": "wp-scripts lint-js \"./*.js\" --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update"
}
}