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
124 lines (124 loc) · 4.26 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.26 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
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
{
"private": true,
"name": "@tsparticles/workspace",
"description": "tsParticles monorepository",
"version": "4.0.0-beta.12",
"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/*",
"version:alpha": "lerna version prerelease --preid alpha",
"version:beta": "lerna version prerelease --preid beta",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor",
"version:major": "lerna version major",
"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"
},
"prettier": "@tsparticles/prettier-config",
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@nx/devkit": "^22.7.1",
"@nx/js": "^22.7.1",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.33",
"@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": "^25.7.0",
"@types/webpack-env": "^1.18.8",
"browserslist": "^4.28.2",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"eslint": "^10.3.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.5",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lerna": "^9.0.7",
"nx": "^22.7.1",
"nx-cloud": "^19.1.3",
"prettier": "^3.8.3",
"prettier-plugin-multiline-arrays": "^4.1.8",
"puppeteer": "^24.43.1",
"rimraf": "^6.1.3",
"source-map-support": "^0.5.21",
"swc-loader": "^0.2.7",
"terser-webpack-plugin": "^5.6.0",
"ts-json-schema-generator": "^2.9.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"webpack": "^5.106.2",
"webpack-bundle-analyzer": "^5.3.0",
"webpack-cli": "^7.0.2",
"yargs": "^18.0.0"
},
"packageManager": "pnpm@11.1.1",
"pnpm": {
"overrides": {
"@nuxt/vue-app@2.18.1>vue": "2.7.16",
"@nuxt/vue-renderer@2.18.1>vue": "2.7.16",
"vue-server-renderer@2.7.16>vue": "2.7.16",
"vue-template-compiler@2.7.16>vue": "2.7.16"
},
"patchedDependencies": {
"tsup@8.5.1": "patches/tsup@8.5.1.patch",
"vue-server-renderer@2.7.16": "patches/vue-server-renderer@2.7.16.patch"
},
"packageExtensions": {
"vue-server-renderer@*": {
"dependencies": {
"vue": "2.7.16"
}
},
"vue-template-compiler@*": {
"dependencies": {
"vue": "2.7.16"
}
}
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"@tsparticles/engine",
"canvas",
"core-js",
"core-js-bundle",
"core-js-pure",
"electron",
"esbuild",
"fsevents",
"inferno",
"lmdb",
"msgpackr-extract",
"nuxt",
"nx",
"puppeteer",
"sharp",
"unrs-resolver"
]
}
}