-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
137 lines (137 loc) · 4.33 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "prettier-plugin-embed",
"description": "A configurable Prettier plugin to format embedded languages in JS/TS files.",
"private": false,
"version": "0.4.15",
"type": "module",
"files": ["./dist"],
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./plugin-embed": {
"types": "./dist/plugin-embed.d.ts"
},
"./embedded/*": {
"types": "./dist/embedded/*.d.ts"
},
"./embedded/index": null,
"./embedded/register": null,
"./embedded/types": null,
"./embedded/utils": null,
"./embedded/*/index": null,
"./embedded/*/language": null,
"./embedded/*/options": null,
"./embedded/*/embedder": null,
"./embedded/*/parser": null,
"./embedded/*/printer": null
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sec-ant/prettier-plugin-embed.git"
},
"homepage": "https://github.com/Sec-ant/prettier-plugin-embed",
"bugs": {
"url": "https://github.com/Sec-ant/prettier-plugin-embed/issues",
"email": "[email protected]"
},
"keywords": [
"prettier",
"plugin",
"prettier-plugin",
"embed",
"embedded",
"embedded-language",
"format"
],
"author": {
"name": "Ze-Zheng Wu"
},
"license": "MIT",
"config": {},
"publishConfig": {
"access": "public"
},
"scripts": {
"install:ci": "npm ci && ./scripts/prepare.sh",
"update-hooks": "simple-git-hooks",
"changeset": "changeset",
"bump": "changeset version 2>/dev/null | grep . && npm i; exit 0",
"dev": "vite",
"lint": "biome lint .",
"type-check": "tsc --noEmit --emitDeclarationOnly false",
"format:prettier": "prettier . --write",
"format:biome": "biome format . --write",
"format": "conc \"npm:format:prettier\" \"npm:format:biome\"",
"check:biome": "biome check --apply .",
"check": "conc \"npm:format:prettier\" \"npm:check:biome\"",
"prebuild": "npm run check && npm run type-check",
"build": "vite build",
"add-glob-import-types": "tsx ./scripts/add-glob-import-types.ts",
"nocheck-chevrotain-types": "tsx ./scripts/nocheck-chevrotain-types.ts",
"copy": "copy-files-from-to",
"postbuild": "tsc --project ./tsconfig.production.json && conc \"npm:add-glob-import-types\" \"npm:nocheck-chevrotain-types\" \"npm:copy\"",
"test": "vitest",
"test:ui": "vitest --ui",
"preview": "vite preview",
"process-readme": "tsx ./scripts/process-readme",
"restore-readme": "tsx ./scripts/restore-readme",
"prepublishOnly": "npm run build && npm run process-readme",
"postpublish": "npm run restore-readme",
"ncu": "ncu",
"postncu": "npm i",
"bump-biome:latest": "npm i -DE @biomejs/biome@latest",
"bump-biome:nightly": "npm i -DE @biomejs/biome@nightly"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@prettier/plugin-php": "^0.22.1",
"@prettier/plugin-pug": "^3.0.0",
"@prettier/plugin-ruby": "^4.0.4",
"@prettier/plugin-xml": "^3.2.2",
"@stedi/prettier-plugin-jsonata": "^2.1.1",
"@types/node": "^20.11.25",
"@vitest/coverage-istanbul": "^1.3.1",
"@vitest/ui": "^1.3.1",
"@xml-tools/parser": "^1.0.11",
"chevrotain": "7.1.1",
"concurrently": "^8.2.2",
"copy-files-from-to": "^3.9.1",
"esbuild": "^0.23.0",
"fast-glob": "^3.3.2",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.15",
"prettier": "^3.2.4",
"prettier-plugin-glsl": "^0.2.0",
"prettier-plugin-ini": "^1.1.0",
"prettier-plugin-java": "^2.5.0",
"prettier-plugin-latex": "^2.0.1",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-pegjs": "^2.0.2",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-properties": "^0.3.0",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-sql": "^0.18.0",
"prettier-plugin-sql-cst": "^0.11.1",
"prettier-plugin-toml": "^2.0.1",
"simple-git-hooks": "^2.10.0",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vitest": "^1.3.1"
},
"dependencies": {
"@types/estree": "^1.0.5",
"dedent": "^1.5.1",
"micro-memoize": "^4.1.2",
"package-up": "^5.0.0",
"tiny-jsonc": "^1.0.1",
"type-fest": "^4.12.0"
}
}