This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-cli/package.json

52 lines
1.3 KiB
JSON
Raw Normal View History

2019-12-04 14:16:57 +08:00
{
"name": "doric-cli",
2021-01-28 14:40:12 +08:00
"version": "0.6.13",
2019-12-04 14:16:57 +08:00
"description": "Doric command line tools",
"main": "dist/index.js",
2019-12-04 14:16:57 +08:00
"bin": {
"doric": "dist/index.js"
2019-12-04 14:16:57 +08:00
},
"scripts": {
"start": "tsc && node dist/index.js",
"clean": "rm -rf dist",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run clean && npm run build"
2019-12-04 14:16:57 +08:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/penfeizhou/doric.git"
},
"author": "pengfei.zhou",
"license": "ISC",
"bugs": {
"url": "https://github.com/penfeizhou/doric/issues"
},
"homepage": "https://github.com/penfeizhou/doric#readme",
"dependencies": {
"child_process": "^1.0.2",
2020-08-03 12:01:49 +08:00
"chokidar": "^3.4.1",
"colors": "^1.4.0",
2020-08-03 12:01:49 +08:00
"commander": "^6.0.0",
2021-02-05 16:35:52 +08:00
"glob": "^7.1.6",
2021-02-26 17:44:48 +08:00
"inquirer": "^8.0.0",
2019-12-04 14:16:57 +08:00
"keypress": "^0.2.1",
"qrcode-terminal": "^0.12.0",
2021-03-02 10:28:33 +08:00
"rollup": "^2.24.0",
2020-07-03 17:23:48 +08:00
"shelljs": "^0.8.4",
2019-12-04 14:16:57 +08:00
"source-map-merger": "^0.2.0",
2021-03-02 10:28:33 +08:00
"typescript": "^4.2.2",
2021-02-25 17:03:49 +08:00
"ws": "^7.4.3",
"xml-js": "^1.6.11"
2020-01-10 14:56:30 +08:00
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
2021-02-19 17:57:15 +08:00
},
"devDependencies": {
2021-02-26 17:44:48 +08:00
"@types/glob": "^7.1.3",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.25",
2021-02-19 17:57:15 +08:00
"@types/ws": "^7.4.0"
2019-12-04 14:16:57 +08:00
}
2020-05-09 10:30:11 +08:00
}