-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.77 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "beautiful-salat",
"version": "1.3.17",
"type": "module",
"description": "Prayer times library providing integration support for multiple environments: vanilla JS, WordPress plugin, components.",
"workspaces": [
"packages/*"
],
"files": [
"build"
],
"main": "./build/index.cjs.js",
"module": "./build/index.es.js",
"exports": {
".": {
"import": "./build/index.es.js",
"require": "./build/index.cjs.js"
},
"./package.json": "./package.json",
"./style.css": "./build/style.css"
},
"scripts": {
"build": "yarn build:packages && vite build --emptyOutDir && yarn build:minify",
"build:minify": "esbuild ./build/index.es.js --bundle --splitting --format=esm --minify --allow-overwrite --outdir=./build",
"build:packages": "yarn workspaces foreach -Rpt --from '{packages/js-lib,packages/components,packages/wordpress-plugin}' run build:package",
"cleanall": "rm -rf build && rm -rf node_modules && rm -rf packages/**/(node_modules|build)",
"cm": "cz",
"dev": "yarn workspace @beautiful-salat/components dev",
"lintall": "prettier --check ./packages -w",
"lintall:check": "prettier --check ./packages",
"prepare": "husky install",
"semantic-release": "semantic-release",
"testall": "yarn workspaces foreach -A run test",
"yalcp": "yalc publish ./packages/js-lib"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintIgnore": [
".pnp.js",
".yarn",
"**/**/build"
],
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.21.5",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vite-plugin-dts": "^3.9.1"
},
"packageManager": "yarn@4.3.1",
"repository": {
"type": "git",
"url": "git+https://github.com/NazimHAli/beautiful-salat.git"
},
"license": "MIT",
"author": {
"name": "Nazim Ali",
"url": "https://github.com/NazimHAli"
},
"engines": {
"node": ">=20.0"
},
"release": {
"branches": [
"master",
"next",
"beta"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"build/**"
]
}
],
"@semantic-release/npm",
"@semantic-release/git"
]
},
"keywords": [
"salat",
"prayer times",
"islam",
"wordpress plugin",
"component",
"package"
],
"bugs": {
"url": "https://github.com/NazimHAli/beautiful-salat/issues"
},
"homepage": "https://github.com/NazimHAli/beautiful-salat#readme",
"lint-staged": {
"*": "yarn lintall"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}