-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "@cybozu/license-manager",
"version": "1.2.1",
"description": "CLI tool for license management",
"author": "Cybozu, Inc.",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "bin/license-manager.js",
"repository": "https://github.com/cybozu/license-manager",
"keywords": [],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"cli": "tsx src/cli.ts",
"lint": "eslint .",
"test": "vitest",
"format": "prettier --write src/**/*",
"release": "npm run build && npm publish",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@cybozu/eslint-config": "^20.0.1",
"@tsconfig/node18": "^1.0.1",
"@types/glob": "^8.0.0",
"commitlint": "^17.6.6",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"memfs": "^3.5.1",
"prettier": "^2.7.1",
"tsx": "^3.9.0",
"typescript": "^4.8.2",
"undici": "^5.20.0",
"vitest": "^0.23.4"
},
"dependencies": {
"commander": "^9.4.0",
"glob": "^8.0.3",
"picocolors": "^1.0.0"
},
"engines": {
"npm": ">=9.3.1",
"pnpm": ">=8.10.0",
"node": ">=18.14.0"
}
}