-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
39 lines (39 loc) · 982 Bytes
/
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
{
"name": "three-csm",
"version": "4.2.1",
"description": "Cascaded shadow mapping (CSM) implementation for three.js",
"main": "build/three-csm.js",
"module": "build/three-csm.module.js",
"types": "build/CSM.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"dev": "concurrently \"ws\" \"rollup -c -w --bundleConfigAsCjs\"",
"lint": "eslint src --fix",
"server": "ws"
},
"repository": {
"type": "git",
"url": "https://github.com/vtHawk/three-csm.git"
},
"keywords": [
"three",
"three.js",
"3d",
"shadows"
],
"author": "vtHawk",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-eslint": "^9.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/three": "^0.155.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"concurrently": "^4.1.2",
"eslint": "^8.27.0",
"eslint-config-mdcs": "^5.0.0",
"local-web-server": "^3.0.7",
"rollup": "^3.3.0",
"typescript": "^4.8.4"
}
}