-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.58 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
{
"name": "@magic/cli",
"version": "0.0.53",
"homepage": "https://magic.github.io/cli",
"description": "declarative command line interfaces with aliasing, commands and environment sanitization",
"scripts": {
"start": "t -p",
"format": "f -w --exclude docs",
"test": "t --exclude docs example config.js",
"build": "tsc && npm run format",
"prepublishOnly": "npm run test && npm run build",
"build:docs": "NODE_ENV=production magic build",
"prod": "NODE_ENV=production magic build serve",
"dev": "magic dev",
"calls": "calls"
},
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"files": [
"src",
"types"
],
"engines": {
"node": ">=14.15.4"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/magic/cli.git"
},
"keywords": [
"magic",
"cli",
"command line interface",
"declarative"
],
"dependencies": {
"@magic/cases": "0.0.11",
"@magic/deep": "0.1.20",
"@magic/error": "0.0.21",
"@magic/log": "0.1.21",
"@magic/types": "0.1.31"
},
"devDependencies": {
"@magic-modules/git-badges": "0.0.12",
"@magic-modules/light-switch": "0.0.12",
"@magic-modules/no-spy": "0.0.9",
"@magic-modules/pre": "0.0.12",
"@magic-themes/docs": "0.0.15",
"@magic/core": "0.0.156",
"@magic/format": "0.0.69",
"@magic/test": "0.2.28",
"typescript": "5.9.3"
},
"author": "Wizards & Witches",
"license": "AGPL-3.0",
"contributors": [
{
"name": "jascha ehrenreich",
"github": "jaeh"
}
]
}