forked from nukeop/nuclear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "nuclear",
"version": "0.5.1",
"description": "Streaming music player that finds music sources automatically.",
"repository": {
"type": "git",
"url": "git+https://github.com/nukeop/nuclear.git"
},
"keywords": [
"electron",
"music",
"youtube"
],
"author": {
"name": "nukeop",
"email": "nuclear@gumblert.tech"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/nukeop/nuclear/issues"
},
"homepage": "https://github.com/nukeop/nuclear#readme",
"scripts": {
"postinstall": "lerna bootstrap --no-ci",
"test": "lerna run test",
"lint:fix": "lerna run lint:fix",
"storybook": "cd packages/ui && npm run storybook",
"build": "cd packages/app && npm run build:dist && npm run build:electron && npm run pack",
"build:win": "cd packages/app && npm run build:dist:windows && npm run build:electron && npm run pack",
"build:all": "cd packages/app && npm run build:dist && npm run build:electron && npm run build:all"
},
"dependencies": {
"eslint": "^6.5.1"
},
"devDependencies": {
"lerna": "^3.16.4"
},
"engines": {
"node": ">=0.11.0",
"npm": ">=6.0.0"
}
}