-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 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
59
60
61
{
"name": "cleants",
"type": "module",
"version": "0.0.3",
"packageManager": "[email protected]",
"description": "🧹 Convert TypeScript to a cleaner JavaScript project",
"author": "viarotel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/viarotel-org/cleants.git"
},
"keywords": [
"typescript",
"javascript",
"converter",
"vue"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"bin": {
"cleants": "dist/bin.mjs"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "cross-env CLEANTS_CONFIG_DIR=../ unbuild && npx .",
"build": "unbuild",
"release": "changelogen --release --push && unbuild && npm publish",
"prepare": "husky install"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@vue/compiler-sfc": "^3.5.12",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"ora": "^8.1.0",
"typescript": "^5.6.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"changelogen": "^0.5.7",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"unbuild": "latest"
}
}