-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.69 KB
/
package.json
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
{
"name": "sprudel",
"version": "0.0.5",
"description": "three.js ECS Particle System",
"keywords": [
"three",
"vfx",
"particle",
"trail",
"effect"
],
"author": "Joerg Jaeckel",
"repository": {
"type": "git",
"url": "git+https://github.com/joergjaeckel/sprudel.git"
},
"license": "MIT",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"eslint": "eslint .",
"eslint-fix": "eslint --fix .",
"prebuild": "tsc",
"prepare": "husky install",
"prettier": "prettier --list-different .",
"prettier-fix": "prettier --write .",
"test": "echo tests are missing"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/node": "^17.0.23",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typescript-enum": "^2.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"prettier": "^2.6.1",
"rollup": "^2.64.0",
"three": "^0.139.2",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,md}": "prettier --write"
},
"dependencies": {
"miniplex": "^0.9.0"
}
}