-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 873 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
{
"name": "path-finding-visualizer",
"version": "2.0.0",
"description": "",
"main": "./js/main.js",
"scripts": {
"watch-tsc": "tsc -w",
"watch-sass": "sass --watch --no-source-map --style=compressed style.scss style.css",
"dev": "concurrently 'npm:watch-*' 'live-server --port=3000'",
"build": "tsc && sass --no-source-map --style=compressed style.scss style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jamison-Chen/path-finding-visualizer.git"
},
"keywords": [],
"author": "Bing-Yang Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jamison-Chen/path-finding-visualizer/issues"
},
"homepage": "https://byc1999.com/path-finding-visualizer",
"devDependencies": {
"concurrently": "^8.2.2",
"live-server": "^1.2.2",
"sass": "^1.77.6",
"typescript": "^5.5.2"
}
}