-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.13 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.13 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "nopalm",
"description": "One stop graphical solution to create and manage your local Node.Js projects end to end.",
"main": "lib/index.js",
"version": "1.0.11",
"bin": {
"nopalm": "lib/index.js"
},
"engines": {
"node": "20"
},
"type": "module",
"dependencies": {
"axios": "^1.6.8",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^11.2.0",
"website-logo": "^2.0.0",
"winston": "^3.12.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"husky": "^8.0.0",
"nodemon": "^2.0.4",
"semantic-release": "^24.2.2"
},
"keywords": [
"node",
"npm",
"cli",
"command-line",
"package-manager",
"dependency-management",
"nodejs",
"workspace-management",
"node-package-manager",
"node-project-management",
"node-project-scaffold",
"node-project-generator",
"graphical-tool",
"project-generator",
"ai-project-management",
"node-ai",
"yarn",
"node-developer-tool",
"node-client",
"client",
"dependencies",
"gui",
"npm-gui",
"node-gui",
"local-development"
],
"scripts": {
"lint": "echo \"No lint for now\"",
"test": "echo \"No tests for now\"",
"copy-client-build": "cp -ar client/dist/. public/",
"build-client": "rm -rf build/ && cd client/ && yarn build && cd .. && yarn copy-client-build",
"postinstall": "node ./lib/scripts/addon --methodToExecute='createCopiedAddonFolder'",
"prepare": "husky install",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/existentialcoder/nopalm.git"
},
"author": "Shravan Balasubramanian <shravanayyappa@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/existentialcoder/nopalm/issues"
},
"homepage": "https://github.com/existentialcoder/nopalm#readme",
"directories": {
"lib": "lib"
},
"files": [
"lib",
"public",
"images",
"addon"
]
}