-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "leaflet.fractal.julia",
"version": "0.0.1",
"description": "Let's dive into fractal world with leaflet.js",
"main": "./dist/bundle.js",
"types": "./dist/main.d.ts",
"scripts": {
"build": "tsc",
"build:web": "webpack --config webpack.config.ts",
"prepublishOnly": "rm -rf ./dist && npm run build && npm run build:web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YUUKIToriyama/Leaflet.Fractal.Julia.git"
},
"keywords": [
"fractal",
"leaflet",
"mathematics"
],
"author": "YUUKIToriyama <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/YUUKIToriyama/Leaflet.Fractal.Julia/issues"
},
"homepage": "https://github.com/YUUKIToriyama/Leaflet.Fractal.Julia#readme",
"devDependencies": {
"@types/leaflet": "^1.7.11",
"leaflet": "^1.8.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@toriyama/draw-julia": "^0.3.2"
}
}