-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.05 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.05 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
{
"name": "@tsparticles/cli",
"version": "3.4.5",
"license": "MIT",
"type": "module",
"bin": {
"tsparticles-cli": "dist/cli.js"
},
"publishConfig": {
"access": "public",
"tagVersionPrefix": "v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsparticles/cli.git"
},
"prettier": "@tsparticles/prettier-config",
"scripts": {
"prettify:ci:src": "prettier --check ./src/*",
"prettify:ci:readme": "prettier --check ./README.md",
"prettify:src": "prettier --write ./src/*",
"prettify:readme": "prettier --write ./README.md",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --cache --cache-location .cache/eslint/.eslintcache --cache-strategy metadata --fix",
"lint:ci": "eslint src --ext .js,.jsx,.ts,.tsx --cache --cache-location .cache/eslint/.eslintcache --cache-strategy metadata",
"circular-deps": "depcruise src --include-only '^src' --validate --output-type err-long",
"compile": "pnpm run build:ts",
"compile:ci": "pnpm run build:ts",
"build:ts": "pnpm run build:ts:cjs",
"build:ts:cjs": "tsc -p src",
"test": "vitest run",
"build": "pnpm run clear:dist && pnpm run prettify:src && pnpm run lint && pnpm run compile && pnpm run circular-deps && pnpm run prettify:readme && chmod +x dist/cli.js && chmod +x dist/build/build.js && chmod +x dist/create/create.js && chmod +x dist/create/preset/preset.js",
"build:ci": "pnpm run clear:dist && pnpm run prettify:ci:src && pnpm run lint:ci && pnpm run compile:ci && pnpm run prettify:ci:readme",
"clear:dist": "rimraf ./dist",
"prepack": "pnpm run build"
},
"dependencies": {
"@swc/core": "^1.15.24",
"@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",
"commander": "^14.0.3",
"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",
"klaw": "^4.1.0",
"lookpath": "^1.2.3",
"dependency-cruiser": "^17.3.10",
"path-scurry": "^2.0.2",
"prettier": "^3.8.1",
"prettier-plugin-multiline-arrays": "^4.1.5",
"prompts": "^2.4.2",
"rimraf": "^6.1.3",
"swc-loader": "^0.2.7",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"webpack": "^5.105.4"
},
"devDependencies": {
"@tsparticles/cli": "latest",
"@tsparticles/engine": "^3.9.1",
"@types/estree": "^1.0.8",
"@types/klaw": "^3.0.7",
"@types/node": "^25.5.2",
"@types/prompts": "^2.4.9",
"@types/webpack-env": "^1.18.8",
"browserslist": "^4.28.2",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"terser-webpack-plugin": "^5.4.0",
"ts-node": "^10.9.2",
"vitest": "^4.1.2",
"webpack-bundle-analyzer": "^5.3.0",
"webpack-cli": "^7.0.2"
},
"description": "tsParticles CLI",
"main": "eslint.config.js",
"author": "Matteo Bruni <matteo.bruni@me.com>",
"packageManager": "pnpm@10.33.0"
}