-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.25 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@tofrankie/prettier-plugin-wxml",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@10.32.0",
"description": "用于格式化微信小程序 WXML 的 Prettier 插件",
"author": "Frankie <1426203851@qq.com> (https://github.com/tofrankie)",
"license": "MIT",
"homepage": "https://github.com/tofrankie/prettier-plugin-wxml#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tofrankie/prettier-plugin-wxml.git"
},
"bugs": "https://github.com/tofrankie/prettier-plugin-wxml/issues",
"keywords": [
"prettier",
"plugin",
"wxml",
"wxs",
"wechat",
"miniprogram",
"format",
"tofrankie"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"CHANGELOG.md",
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"lint": "run-s lint:eslint lint:prettier typecheck",
"lint:eslint": "eslint . --cache --fix",
"lint:prettier": "prettier . --cache --write --log-level silent",
"publint": "publint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky",
"prepublishOnly": "pnpm lint && pnpm test && pnpm build",
"github:release": "tfr"
},
"peerDependencies": {
"prettier": ">=3.0.0"
},
"dependencies": {
"@babel/parser": "^7.29.2",
"angular-html-parser": "^10.4.0",
"p-limit": "^7.3.0",
"prettier-plugin-organize-attributes": "^1.0.0"
},
"devDependencies": {
"@tofrankie/action": "^0.0.7",
"@tofrankie/eslint": "^0.2.0",
"@tofrankie/prettier": "^0.2.0",
"@tofrankie/tsconfig": "^0.0.5",
"@types/node": "^25.5.2",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"publint": "^0.3.18",
"tsdown": "^0.21.7",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}