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 4
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.99 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.99 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
125
126
127
{
"name": "angular-fireworks",
"version": "3.0.0",
"description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.",
"keywords": [
"front-end",
"frontend",
"tsparticles",
"particles.js",
"particlesjs",
"particles",
"particle",
"canvas",
"jsparticles",
"xparticles",
"particles-js",
"particles-bg",
"particles-bg-vue",
"particles-ts",
"particles.ts",
"react-particles-js",
"react-particles.js",
"react-particles",
"react",
"reactjs",
"vue-particles",
"ngx-particles",
"angular-particles",
"particleground",
"vue",
"vuejs",
"preact",
"preactjs",
"jquery",
"angularjs",
"angular",
"typescript",
"javascript",
"animation",
"web",
"html5",
"web-design",
"webdesign",
"css",
"html",
"css3",
"animated",
"background",
"confetti",
"canvas",
"fireworks",
"fireworks-js",
"confetti-js",
"confettijs",
"fireworksjs",
"canvas-confetti"
],
"scripts": {
"ng": "ng",
"build:all": "ng build",
"build": "node scripts/prebuild.js && pnpm run prettify:src && pnpm run prettify:readme && ng build ng-fireworks --configuration production",
"build:ci": "node scripts/prebuild.js && pnpm run prettify:ci:src && pnpm run prettify:ci:readme && ng build ng-fireworks --configuration production",
"version": "pnpm run build && git add ./projects/ng-fireworks/package.json",
"prettify:ci:src": "prettier --check ./projects/ng-fireworks/src/*",
"prettify:ci:readme": "prettier --check ./README.md",
"prettify:src": "prettier --write ./projects/ng-fireworks/src/*",
"prettify:readme": "prettier --write ./README.md",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"prepack": "pnpm run build"
},
"publishConfig": {
"directory": "dist/ng-fireworks",
"linkDirectory": true
},
"prettier": "@tsparticles/prettier-config",
"dependencies": {
"@angular/animations": "~17.3.0",
"@angular/common": "~17.3.0",
"@angular/compiler": "~17.3.0",
"@angular/core": "~17.3.0",
"@angular/forms": "~17.3.0",
"@angular/platform-browser": "~17.3.0",
"@angular/platform-browser-dynamic": "~17.3.0",
"@angular/router": "~17.3.0",
"@tsparticles/fireworks": "^3.3.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~17.3.0",
"@angular/cli": "~17.3.0",
"@angular/compiler-cli": "~17.3.0",
"@tsparticles/prettier-config": "^2.1.6",
"@types/jasmine": "~5.1.4",
"@types/node": "^20.12.2",
"jasmine-core": "~5.13.0",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "~17.3.0",
"prettier": "^3.2.5",
"typescript": "~5.4.0"
},
"module": "dist/ng-fireworks/fesm2015/ng-fireworks.mjs",
"es2020": "dist/ng-fireworks/fesm2020/ng-fireworks.mjs",
"esm2020": "dist/ng-fireworks/esm2020/ng-fireworks.mjs",
"fesm2020": "dist/ng-fireworks/fesm2020/ng-fireworks.mjs",
"fesm2015": "dist/ng-fireworks/fesm2015/ng-fireworks.mjs",
"typings": "dist/ng-fireworks/index.d.ts",
"exports": {
"./package.json": {
"default": "./dist/ng-fireworks/package.json"
},
".": {
"types": "./dist/ng-fireworks/index.d.ts",
"esm2020": "./dist/ng-fireworks/esm2020/ng-fireworks.mjs",
"es2020": "./dist/ng-fireworks/fesm2020/ng-fireworks.mjs",
"es2015": "./dist/ng-fireworks/fesm2015/ng-fireworks.mjs",
"node": "./dist/ng-fireworks/fesm2015/ng-fireworks.mjs",
"default": "./dist/ng-fireworks/fesm2020/ng-fireworks.mjs"
}
}
}