-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.66 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.66 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
{
"name": "carousel-kit",
"description": "Carousel block using Embla and WordPress Interactivity API",
"author": "rtCamp",
"private": true,
"engines": {
"node": "^22.0.0",
"npm": "^10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rtCamp/carousel-kit"
},
"bugs": {
"url": "https://github.com/rtCamp/carousel-kit/issues"
},
"scripts": {
"build": "wp-scripts build --experimental-modules --webpack-src-dir=./src --output-path=./build",
"start": "wp-scripts start --experimental-modules --webpack-src-dir=./src --output-path=./build",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"lint:js:types": "tsc --build --noEmit",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "wp-scripts lint-style --fix",
"lint:php": "composer run-script lint",
"lint:php:fix": "composer run-script format",
"changelog": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s",
"version": "npm run changelog && git add CHANGELOG.md",
"i18n:pot": "wp i18n make-pot . languages/carousel-kit.pot --domain=carousel-kit --exclude=node_modules,vendor,tests --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/rtCamp/carousel-kit/issues\"}'",
"test:actions": "act",
"test:js": "wp-scripts test-unit-js",
"test:js:watch": "wp-scripts test-unit-js --watch",
"test:js:coverage": "wp-scripts test-unit-js --coverage"
},
"dependencies": {
"@wordpress/babel-preset-default": "8.38.0",
"@wordpress/block-editor": "^15.10.0",
"@wordpress/blocks": "^15.10.0",
"@wordpress/components": "^30.0.0",
"@wordpress/compose": "7.38.0",
"@wordpress/data": "^10.10.0",
"@wordpress/dom-ready": "^4.37.0",
"@wordpress/element": "6.38.0",
"@wordpress/i18n": "^6.10.0",
"@wordpress/icons": "11.5.0",
"@wordpress/interactivity": "6.37.0",
"embla-carousel": "8.6.0",
"embla-carousel-autoplay": "8.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/wordpress__block-editor": "15.0.0",
"@types/wordpress__blocks": "12.5.18",
"@wordpress/scripts": "^31.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"husky": "9.1.7",
"typescript": "^5.9.3"
},
"overrides": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webpack-dev-server": ">=5.2.1",
"minimatch": ">=10.2.1",
"serialize-javascript": ">=7.0.3"
}
}