-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "typeos",
"version": "1.0.0",
"description": "Design showcase for a minimalist desktop UI",
"main": "app.ts",
"scripts": {
"rebuild": "electron-rebuild -f -w better-sqlite3",
"test": "sh tests/init.sh",
"start": "echo 'Build...' && tsc && echo 'Start...' && electron src/app.js",
"watch-css": "node-sass --watch src/css -o src/css",
"build-css": "node-sass src/css -o src/css",
"clean": "rm -f src/js/*.js && rm -f src/css/*.css && rm -f src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InstantCodee/TypeOS.git"
},
"keywords": [
"desktop",
"ui",
"showcase",
"design",
"minimalism"
],
"author": "InstantCodee",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/InstantCodee/TypeOS/issues"
},
"homepage": "https://github.com/InstantCodee/TypeOS#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/better-sqlite3": "^3.1.3",
"@types/jsonwebtoken": "^7.2.8"
},
"dependencies": {
"bcrypt": "^3.0.2",
"better-sqlite3": "^5.0.1",
"chalk": "^2.4.1",
"electron": "^3.0.6",
"jsonwebtoken": "^8.3.0",
"node-sass": "^4.9.4",
"typescript": "^3.1.3",
"electron-rebuild": "^1.8.2"
}
}