forked from fand/vfx-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.11 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
{
"name": "react-vfx",
"description": "WebGL effects for React elements",
"version": "0.4.1",
"author": "Takayosi Amagi <fand.gmork@gmail.com> (https://amagi.dev/)",
"bugs": {
"url": "https://github.com/fand/react-vfx/issues"
},
"dependencies": {
"three": "^0.111.0"
},
"files": [
"package.json",
"README.md",
"lib/"
],
"devDependencies": {
"@types/node": "^12.12.47",
"@types/react": "^16.9.41",
"@types/three": "^0.103.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react-spring": "^8.0.27",
"rimraf": "^3.0.2",
"typescript": "^3.9.6"
},
"homepage": "https://amagi.dev/react-vfx",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-publish": "npm run lint && npm run build:lib"
}
},
"keywords": [
"glsl",
"react",
"threejs",
"webgl"
],
"license": "MIT",
"lint-staged": {
"src/*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"main": "lib/index.js",
"peerDependencies": {
"react": ">= 16.12.0",
"react-dom": ">= 16.12.0"
},
"repository": {
"url": "https://github.com/fand/react-vfx"
},
"scripts": {
"build": "run-s clean build:lib build:docs",
"build:docs": "cd docs_src && npm run build && mv build ../docs",
"build:lib": "tsc -d",
"clean": "rimraf lib docs",
"dev": "run-p watch:lib watch:docs",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"watch:docs": "cd docs_src && npm start",
"watch:lib": "tsc -w"
},
"types": "lib/index.d.ts"
}