-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.01 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
{
"name": "matter-liquid",
"type": "module",
"version": "0.0.1",
"description": "",
"author": "TheLucifurry",
"license": "",
"homepage": "https://github.com/TheLucifurry/matter-liquid",
"repository": {
"type": "git",
"url": "https://github.com/TheLucifurry/matter-liquid.git"
},
"keywords": [
"matter-js",
"matter",
"plugin",
"physics",
"liquid",
"fluid",
"water",
"simulation",
"js",
"javascript"
],
"exports": {
".": "./dist/index.js"
},
"module": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite --open",
"build": "vite build",
"lint": "eslint .",
"format": "eslint . --fix"
},
"dependencies": {
"twgl.js": "^4.19.2"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.0",
"@types/matter-js": "^0.17.5",
"eslint": "^8.53.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-glsl": "^1.1.2"
}
}