-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.88 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
71
{
"name": "@dchighs/dc-tools-cli",
"description": "CLI tools for Dragon City assets, localization, and configuration",
"version": "0.2.0",
"type": "commonjs",
"bin": {
"dc-tools-cli": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DC-Highs/dc-tools-cli.git"
},
"homepage": "https://github.com/DC-Highs/dc-tools-cli#readme",
"bugs": {
"url": "https://github.com/DC-Highs/dc-tools-cli/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"!/**/__tests__"
],
"scripts": {
"build": "tsc",
"build:exe": "npm run build && pkg dist/index.js --out-path release",
"dev": "tsx ./src/index.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepublishOnly": "npm run build && vitest run",
"test": "vitest",
"test:cov": "vitest run --coverage"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"dragon-city",
"dc-tools",
"cli",
"assets",
"localization",
"marcuth"
],
"author": "Marcuth",
"license": "MIT",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/node": "^26.4.0",
"@vitest/coverage-v8": "^4.1.11",
"@yao-pkg/pkg": "^6.2.2",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.9.6",
"prettier-plugin-sort-imports": "^1.8.11",
"tsx": "^4.23.13",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
},
"dependencies": {
"@dchighs/dc-assets": "^0.4.3",
"@dchighs/dc-client-state": "^0.1.0",
"@dchighs/dc-config": "^0.1.122",
"@dchighs/dc-core": "^0.4.2",
"@dchighs/dc-localization": "^0.0.7",
"commander": "^15.0.0",
"winston": "^3.19.0"
}
}