-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "@asenajs/asena-cli",
"version": "0.7.1",
"author": "LibirSoft",
"license": "MIT",
"bin": {
"asena": "./dist/bin/asena.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun run clean && tsc",
"clean": "rm -rf dist",
"test": "bun test",
"pre-release": "bun update && bun run build",
"prepublishOnly": "bun scripts/sync-version.ts && bun run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "bun run lint && bun run format:check",
"check:fix": "bun run lint:fix && bun run format"
},
"exports": {
".": {
"import": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AsenaJs/Asena-cli"
},
"dependencies": {
"@asenajs/asena": "^0.7.1",
"@changesets/cli": "^2.30.0",
"commander": "^12.1.0",
"inquirer": "^12.11.1",
"ora": "^8.2.0",
"reflect-metadata": "^0.2.2",
"strip-json-comments": "^5.0.3"
},
"devDependencies": {
"@types/bun": "latest",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"prettier": "^3.8.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}