This repository was archived by the owner on Apr 15, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.69 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.69 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
{
"name": "@tsparticles/presets-workspace",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "nx run-many -t build --parallel=50%",
"build:ci": "nx run-many -t build:ci",
"build:docs": "rimraf docs && typedoc --plugin typedoc-plugin-keywords --plugin typedoc-plugin-coverage",
"generate:samples": "node scripts/generate-samples.mjs",
"version:alpha": "lerna version prerelease --preid alpha",
"version:beta": "lerna version prerelease --preid beta",
"publish:alpha": "lerna publish from-package --pre-dist-tag alpha",
"publish:beta": "lerna publish from-package --pre-dist-tag beta",
"publish:next": "lerna publish from-package --dist-tag next",
"release:zip-artifacts": "node scripts/package-zips.js",
"release:prettify-changelog": "node scripts/prettify-changelog.js"
},
"license": "MIT",
"prettier": "@tsparticles/prettier-config",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@swc/core": "^1.15.24",
"@tsparticles/cli": "^3.4.5",
"@tsparticles/depcruise-config": "^3.4.6",
"@tsparticles/eslint-config": "^3.4.6",
"@tsparticles/prettier-config": "^3.4.6",
"@tsparticles/tsconfig": "^3.4.6",
"@tsparticles/webpack-plugin": "^3.4.6",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.5.2",
"@types/webpack-env": "^1.18.8",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"browserslist": "^4.28.2",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-tsdoc": "^0.5.2",
"fs-extra": "^11.3.4",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lerna": "^9.0.7",
"nx": "^22.6.4",
"nx-cloud": "^19.1.3",
"prettier": "^3.8.1",
"prettier-plugin-multiline-arrays": "4.1.5",
"puppeteer": "^24.40.0",
"rimraf": "^6.1.3",
"source-map-support": "^0.5.21",
"swc-loader": "^0.2.7",
"terser-webpack-plugin": "^5.4.0",
"ts-json-schema-generator": "^2.9.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.18",
"typedoc-plugin-clarity": "^1.6.0",
"typedoc-plugin-coverage": "^4.0.2",
"typedoc-plugin-google-ads": "^1.6.0",
"typedoc-plugin-keywords": "^1.6.0",
"typedoc-plugin-mdn-links": "^5.1.1",
"typedoc-plugin-missing-exports": "^4.1.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^5.3.0",
"webpack-cli": "^7.0.2",
"yargs": "^18.0.0"
},
"workspaces": [
"apps/*",
"presets/*"
],
"type": "module",
"packageManager": "pnpm@10.33.0"
}