-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.82 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
{
"name": "@wufe/particles",
"version": "1.5.0",
"main": "dist/cjs/index.js",
"jsdelivr": "dist/umd/index.js",
"license": "MIT",
"types": "index.d.ts",
"scripts": {
"demo": "yarn link && yarn link @wufe/particles && run-p watch:client",
"demo:build:production": "yarn link && yarn link @wufe/particles && parcel build -t browser public/index.html -d demo-dist --no-cache",
"dev": "run-s build:watch",
"watch:client": "parcel serve -t browser public/index.html -d demo-dist -p 2345 --hmr-port 44412 --no-cache --open",
"compile": "webpack",
"compile:production": "cross-env NODE_ENV=production webpack",
"compile:watch": "webpack --watch",
"generate:declaration": "rm -rf types && tsc --declaration --emitDeclarationOnly --outDir ./types || true",
"generate:declaration:watch": "rm -rf types && tsc --declaration --emitDeclarationOnly --outDir ./types --watch",
"build": "run-s generate:declaration compile",
"build:production": "run-s generate:declaration compile:production",
"build:watch": "run-p generate:declaration:watch compile:watch",
"deploy": "pwsh ./scripts/deploy.ps1"
},
"devDependencies": {
"@types/gl-matrix": "^2.4.5",
"@types/object-path": "^0.11.0",
"@wufe/liquid-particle-system": "1.2.1",
"@wufe/particles-quadtree": "1.0.4",
"acorn": "^6.4.1",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"glsl-noise": "^0.0.0",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.1",
"glslify-loader": "^2.0.0",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"perlin.js": "^1.0.0",
"raw-loader": "^4.0.0",
"ts-loader": "^6.2.2",
"typescript": "^3.7.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"dequal": "^2.0.2",
"gl-matrix": "^3.1.0",
"object-path": "^0.11.4"
}
}