-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.63 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
64
{
"name": "babylonjs-hook",
"version": "0.1.1",
"description": "react babylonjs hook",
"keywords": [
"react",
"babylonjs",
"hook"
],
"type": "module",
"main": "dist/babylonjs-hook.es5.js",
"module": "dist/babylonjs-hook.es5.js",
"typings": "dist/types/babylonjs-hook.d.ts",
"files": [
"dist"
],
"author": "Brian Zinn <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/brianzinn/babylonjs-hook"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.tsx'",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts && tsc -d --emitDeclarationOnly --declarationDir dist/types",
"start": "rollup -c rollup.config.ts -w",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@babylonjs/core": "^4.2.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.1.0",
"@types/node": "^12.0.8",
"@types/react": "^17.0.0",
"cross-env": "^6.0.0",
"lint-staged": "^9.0.0",
"prettier": "^1.14.3",
"react": "^17.0.1",
"rimraf": "^3.0.0",
"rollup": "^2.36.2",
"rollup-plugin-commonjs": "^10.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@babylonjs/core": "4.x||>5.0.0-rc||5.x",
"react": ">=16"
}
}