-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (69 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "cuby",
"version": "1.0.0",
"description": "A Rubik's cube app",
"main": "src/js/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"tailwind:watch": "npx tailwindcss -i ./src/css/input.css -o ./src/css/tailwind/output.css --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/quentinformatique/Cuby.git"
},
"keywords": [
"rubik's cube"
],
"author": "quentiformatique",
"license": "ISC",
"bugs": {
"url": "https://github.com/quentinformatique/Cuby/issues"
},
"homepage": "https://github.com/quentinformatique/Cuby#readme",
"devDependencies": {
"@electron-forge/cli": "^7.2.0",
"@electron-forge/maker-deb": "^7.2.0",
"@electron-forge/maker-rpm": "^7.2.0",
"@electron-forge/maker-squirrel": "^7.2.0",
"@electron-forge/maker-zip": "^7.2.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.2.0",
"@electron-forge/publisher-github": "^7.2.0",
"electron": "^26.3.0",
"tailwindcss": "^3.3.3"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"axios": "^1.6.5",
"chart.js": "^4.4.1",
"cubing": "^0.43.4",
"electron-squirrel-startup": "^1.0.0",
"fs": "^0.0.1-security",
"fs-extra": "^11.1.1",
"moment": "^2.29.4",
"shell": "^0.5.1",
"sr-puzzlegen": "^1.0.4",
"tailwindcss-typography": "^3.1.0"
},
"build": {
"win": {
"icon": "src/img/icon.ico"
},
"mac": {
"icon": "src/img/icon.ico"
}
},
"files": [
"./build/**/*",
"./dist/**/*",
"./node_modules/**/*",
"./src/img/*",
"*.js"
],
"directories": {
"buildResources": "src/img/*"
}
}