forked from Ar3sDevelopment/tsparticles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 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
{
"name": "tsparticles",
"version": "1.7.1",
"description": "Porting of Vincent Garreau's particles.js, converted in TypeScript.",
"homepage": "https://github.com/matteobruni/tsparticles",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"copy:js": "cpx \"src/**/*.{js,d.ts}\" dist/",
"build": "npm run build:docs && npm run copy:js && npm run build:types && npm run build:js && npx webpack --mode production",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --ignore \"src/**/*.d.ts\" --extensions \".ts,.tsx\" --source-maps inline",
"build:docs": "typedoc --out docs --gaID UA-159372955-1 src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matteobruni/tsparticles.git"
},
"keywords": [
"particles",
"particle",
"canvas",
"particles-js",
"particles.js",
"typescript",
"javascript",
"animation"
],
"author": "Matteo Bruni",
"license": "MIT",
"files": [
"dist/**/*"
],
"bugs": {
"url": "https://github.com/matteobruni/tsparticles/issues"
},
"main": "dist/tsparticles.min.js",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.4",
"babel-loader": "^8.0.6",
"cpx": "^1.5.0",
"terser-webpack-plugin": "^2.3.5",
"typedoc": "^0.16.11",
"typescript": "^3.7.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"pathseg": "^1.2.0"
}
}