forked from tsparticles/tsparticles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.63 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
75
76
77
78
79
80
81
82
{
"private": true,
"name": "@tsparticles/workspace",
"description": "tsParticles monorepository",
"version": "4.3.1",
"type": "module",
"scripts": {
"build": "pnpm run prettify:readme && nx run-many -t build --parallel=50%",
"build:ci": "pnpm run prettify:ci:readme && nx run-many -t build --c=ci",
"build:affected": "pnpm run prettify:readme && nx affected -t build --parallel=50%",
"build:affected:ci": "pnpm run prettify:ci:readme && nx affected -t build --c=ci",
"prettify:ci:readme": "prettier --config ./prettier.readme.config.json --check ./README.md ./markdown/*",
"prettify:readme": "prettier --config ./prettier.readme.config.json --write ./README.md ./markdown/*",
"postversion:fix": "node scripts/post-version-fix.js",
"version:alpha": "lerna version prerelease --preid alpha --no-git-tag-version --yes && pnpm run postversion:fix",
"version:beta": "lerna version prerelease --preid beta --no-git-tag-version --yes && pnpm run postversion:fix",
"version:patch": "lerna version patch --no-git-tag-version --yes && pnpm run postversion:fix",
"version:minor": "lerna version minor --no-git-tag-version --yes && pnpm run postversion:fix",
"version:major": "lerna version major --no-git-tag-version --yes && pnpm run postversion:fix",
"publish:alpha": "lerna publish from-package --pre-dist-tag alpha --preid alpha",
"publish:beta": "lerna publish from-package --pre-dist-tag beta --preid beta",
"publish:next": "lerna publish from-package --dist-tag next",
"publish:v3": "lerna publish from-package --dist-tag v3",
"publish:v2": "lerna publish from-package --dist-tag v2",
"publish:v1": "lerna publish from-package --dist-tag v1",
"release:zip-artifacts": "node scripts/package-zips.js",
"release:prettify-changelog": "node scripts/prettify-changelog.js",
"deploy:docs:json": "node deploy.docs-json.js",
"prepare": "husky",
"template:run": "bash scripts/run-template.sh"
},
"prettier": "@tsparticles/prettier-config",
"devDependencies": {
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@nx/devkit": "^23.0.1",
"@nx/js": "^23.0.1",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.43",
"@tsparticles/browserslist-config": "workspace:*",
"@tsparticles/cli-build": "workspace:*",
"@tsparticles/cli-nx-plugin": "workspace:*",
"@tsparticles/depcruise-config": "workspace:*",
"@tsparticles/eslint-config": "workspace:*",
"@tsparticles/prettier-config": "workspace:*",
"@tsparticles/rollup-plugin": "workspace:*",
"@tsparticles/tsconfig": "workspace:*",
"@tsparticles/webpack-plugin": "workspace:*",
"@types/node": "^26.1.0",
"@types/webpack-env": "^1.18.8",
"browserslist": "^4.28.5",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^63.0.12",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-tsdoc": "^0.5.2",
"fs-extra": "^11.3.6",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lerna": "^9.0.7",
"nx": "^23.0.1",
"nx-cloud": "^19.1.3",
"prettier": "^3.9.4",
"prettier-plugin-multiline-arrays": "^4.1.10",
"puppeteer": "^25.3.0",
"rimraf": "^6.1.3",
"source-map-support": "^0.5.21",
"swc-loader": "^0.2.7",
"terser-webpack-plugin": "^5.6.1",
"ts-json-schema-generator": "^2.9.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"webpack": "^5.108.4",
"webpack-bundle-analyzer": "^5.3.0",
"webpack-cli": "^7.2.1",
"yargs": "^18.0.0"
},
"packageManager": "pnpm@11.10.0"
}