-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "wasm-mandelbrot",
"version": "1.0.0",
"description": "Mandelbrot generator implemented using TypeScript and Rust with WebAssembly",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"prebuild": "npm run clean",
"build": "npm run build:wasm && npm run build:webpack",
"build:webpack": "webpack --config webpack.prod.js",
"build:wasm": "wasm-pack init --mode no-install",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ksm2/wasm-mandelbrot.git"
},
"keywords": [
"mandelbrot",
"webassembly",
"wasm",
"rust",
"typescript"
],
"author": "Konstantin Simon Maria Möllers <ksm.moellers@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksm2/wasm-mandelbrot/issues"
},
"homepage": "https://github.com/ksm2/wasm-mandelbrot#readme",
"devDependencies": {
"copy-webpack-plugin": "^4.5.2",
"html-webpack-plugin": "^3.2.0",
"rimraf": "^2.6.2",
"ts-loader": "^5.1.0",
"typescript": "^3.0.3",
"webpack": "^4.18.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
}
}