-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.53 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
{
"name": "@raisely/cli",
"version": "2.0.0",
"description": "Raisely CLI for local development",
"main": "./src/cli.js",
"type": "module",
"bin": {
"raisely": "./bin/raisely.js"
},
"scripts": {
"test": "vitest run --config vitest.config.js"
},
"engines": {
"node": ">=18"
},
"author": "Raisely",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@babel/core": "7.12.10",
"@babel/helpers": "7.12.5",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-transform-regenerator": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@napi-rs/keyring": "1.3.0",
"chalk": "5.6.2",
"commander": "13.1.0",
"express": "5.2.1",
"folder-hash": "4.1.2",
"form-data": "4.0.6",
"fzstd": "0.1.1",
"glob": "8.1.0",
"glob-promise": "6.0.7",
"handlebars": "4.7.9",
"http-proxy-middleware": "3.0.5",
"inquirer": "12.11.1",
"jwt-decode": "4.0.0",
"lodash": "4.18.1",
"node-fetch": "3.3.2",
"node-watch": "0.7.4",
"open": "10.2.0",
"ora": "8.2.0",
"p-limit": "6.2.0"
},
"devDependencies": {
"prettier": "3.8.3",
"vitest": "2.1.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raisely/cli.git"
},
"keywords": [
"cli",
"raisely"
],
"bugs": {
"url": "https://github.com/raisely/cli/issues"
},
"homepage": "https://github.com/raisely/cli#readme",
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"useTabs": true,
"tabWidth": 4,
"arrowParens": "always",
"quoteProps": "consistent",
"bracketSpacing": true
}
}