-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.24 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.24 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
{
"name": "aegis-theme",
"version": "1.0.0-rc.2",
"description": "Aegis - Native Block Framework",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"build:translate": "npm run translate && webpack --mode production",
"start": "webpack --watch --mode development",
"dev": "webpack --mode development",
"serve": "webpack serve --config webpack.config.js --mode development",
"lint:ts": "eslint 'src/**/*.{ts,tsx}'",
"lint:css": "stylelint '**/*.css' --config stylelintrc.json",
"type-check": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,tsx,css}'",
"translate": "node scripts/translate.js",
"translate:unix": "find languages -name \"*.po\" -exec msgfmt {} -o {}.mo \\; && rename 's/\\.po\\.mo$/\\.mo/' languages/*.po.mo"
},
"keywords": [
"WordPress",
"Framework",
"Block Theme"
],
"author": "Atmostfear Entertainment",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.28.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@wordpress/env": "^10.19.0",
"@wordpress/eslint-plugin": "^21.0.0",
"@wordpress/scripts": "^31.3.0",
"@wordpress/stylelint-config": "^23.22.0",
"babel-loader": "^9.1.3",
"browser-sync-webpack-plugin": "^2.3.0",
"css-loader": "^7.1.2",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"sass": "^1.78.0",
"sass-loader": "^16.0.1",
"style-loader": "^4.0.0",
"stylelint": "^16.0.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^19.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aegiswp/theme.git"
},
"bugs": {
"url": "https://github.com/aegiswp/theme/issues"
},
"homepage": "https://github.com/aegiswp/theme#readme"
}