-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 KB
/
package.json
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
{
"name": "@litert/ottoia",
"version": "0.4.4",
"description": "A simple multi-repository package manager of node.",
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "npm run rebuild",
"build": "echo Using TypeScript && tsc -v && tsc -p .",
"build-watch": "echo Using TypeScript && tsc -v && tsc -w -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"clean": "rm -rf lib cli",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "./utils/eslint.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litert/ottoia.js.git"
},
"bugs": {
"url": "https://github.com/litert/ottoia.js/issues"
},
"homepage": "https://github.com/litert/ottoia.js#readme",
"keywords": [
"manage",
"package",
"multiple"
],
"bin": {
"ottoia": "cli/CMD.js"
},
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@litert/eslint-plugin-rules": "^0.2.0",
"@types/node": "^20.11.0",
"@types/validate-npm-package": "^1.0.3",
"@types/validate-npm-package-name": "^4.0.2",
"husky": "^9.0.7",
"typescript": "^5.6.0"
},
"dependencies": {
"@litert/clap": "^3.0.0",
"@litert/http-client": "^1.1.0",
"@litert/logger": "^2.0.0",
"@litert/typeguard": "^1.4.0",
"validate-npm-package-name": "^5.0.0"
},
"os": [
"linux",
"darwin",
"win32"
]
}