-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
37 lines (37 loc) · 988 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
{
"name": "raindrop-fx",
"version": "1.0.8",
"description": "Rain drop effect with WebGL",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:ts && npm run build:node && npm run build:browser",
"build:watch": "node ./build/build-browser.js --dev -w",
"build:browser": "node ./build/build-browser.js",
"build:node": "node ./build/build-node.js",
"build:ts": "npx tsc",
"start": "npx esbuild --serve=0.0.0.0:8000 --servedir=./",
"test": "npm run build && npm run test:examples",
"test:examples": "cd examples/with-node && npm i && npm test"
},
"keywords": [
"webgl",
"raindrop",
"rain",
"visual",
"effect",
"vfx"
],
"author": "SardineFish",
"license": "MIT",
"dependencies": {
"zogra-renderer": "^1.3.5"
},
"devDependencies": {
"esbuild": "^0.8.50",
"typescript": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SardineFish/raindrop-fx.git"
}
}