-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "mosa",
"version": "1.0.18",
"description": "用于命令行的交互式备忘单工具.🪵",
"main": "index.js",
"bin": {
"mosa": "./bin/mosa.js"
},
"scripts": {
"start": "nodemon",
"build": "ts-node-esm",
"lint": "eslint ./src --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arsize/mosa.git"
},
"keywords": [],
"author": "Arsize",
"license": "(ISC) MIT",
"bugs": {
"url": "https://github.com/arsize/mosa/issues"
},
"homepage": "https://github.com/arsize/mosa#readme",
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.14.0",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"esbuild-node-tsc": "^2.0.5",
"eslint": "^8.34.0",
"nodemon": "^2.0.20",
"ora": "^6.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "^10.0.0",
"inquirer": "^8.2.3",
"shelljs": "^0.8.5",
"format-json": "^1.0.3",
"chalk": "4.0"
}
}