-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.62 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
65
66
67
68
69
70
{
"name": "tumblr-theme-garden",
"version": "0.1.15",
"description": "A WordPress plugin that lets you run Tumblr Themes.",
"author": {
"name": "Cupcake Labs",
"url": "https://cupcakelabs.wordpress.com"
},
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress"
],
"homepage": "https://github.com/Automattic/tumblr-theme-garden/",
"repository": "https://github.com/Automattic/tumblr-theme-garden/",
"bugs": "https://github.com/Automattic/tumblr-theme-garden/issues",
"engines": {
"node": ">=20.0",
"npm": ">=10.0"
},
"devDependencies": {
"@csstools/postcss-sass": "^5.0.1",
"@wordpress/browserslist-config": "^5.34.1",
"@wordpress/postcss-plugins-preset": "^4.35.5",
"@wordpress/scripts": "^27.2.5",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"rtlcss": "^4.0.0"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"build": "npm-run-all --sequential build:**",
"build:assets:scripts": "wp-scripts build assets/js/src/*.js --output-path=assets/js/build",
"build:assets:styles": "postcss assets/css/src/*.scss --ext .css --dir assets/css/build --config postcss.config.js",
"format": "npm-run-all --sequential format:**",
"format:scripts": "wp-scripts format assets/js --no-error-on-unmatched-pattern",
"format:styles": "npm run lint:styles -- --fix",
"lint": "npm-run-all --sequential lint:**",
"lint:scripts": "wp-scripts lint-js assets/js --no-error-on-unmatched-pattern --fix",
"lint:styles": "wp-scripts lint-style assets/css/**/*.{css,sass,scss} --allow-empty-input --report-descriptionless-disables --report-invalid-scope-disables --report-needless-disables --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:readme-md": "wp-scripts lint-md-docs README.md",
"packages-update": "wp-scripts packages-update --dist-tag=wp-6.5",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"start": "npm-run-all --parallel start:**",
"start:assets:scripts": "wp-scripts start assets/js/src/*.js --output-path=assets/js/build",
"start:assets:styles": "postcss assets/css/src/*.scss --ext .css --dir assets/css/build --config postcss.config.js --watch"
},
"dependencies": {
"@gsap/react": "^2.1.1",
"classnames": "^2.5.1",
"gsap": "^3.12.5",
"use-debounce": "^10.0.4"
}
}