@diplodoc/liquid 0.0.0-rc-fix-new-line-202509031344

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@diplodoc/liquid",
3
+ "version": "0.0.0-rc-fix-new-line-202509031344",
4
+ "description": "A simple transformer of text in YFM (Yandex Flavored Markdown) to HTML",
5
+ "keywords": [
6
+ "docs",
7
+ "yfm",
8
+ "liquid",
9
+ "documentation",
10
+ "tool",
11
+ "tools",
12
+ "generator"
13
+ ],
14
+ "homepage": "https://github.com/diplodoc-platform/liquid#readme",
15
+ "bugs": {
16
+ "url": "https://github.com/diplodoc-platform/liquid/issues"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git@github.com:diplodoc-platform/liquid.git"
21
+ },
22
+ "license": "MIT",
23
+ "author": "YFM Team <yfm-team@yandex.ru>",
24
+ "main": "./lib/index.js",
25
+ "types": "./lib/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./lib/index.d.ts",
29
+ "default": "./lib/index.js"
30
+ }
31
+ },
32
+ "files": [
33
+ "lib"
34
+ ],
35
+ "scripts": {
36
+ "build": "npm run build:lib",
37
+ "build:lib": "tsc -p tsconfig.transform.json",
38
+ "dev:lib": "tsc -w -p tsconfig.transform.json",
39
+ "prepublishOnly": "npm run lint && npm run test && npm run build",
40
+ "test": "jest --coverage",
41
+ "typecheck": "tsc -p tsconfig.json --noEmit",
42
+ "lint": "lint update && lint",
43
+ "lint:fix": "lint update && lint fix",
44
+ "pre-commit": "lint update && lint-staged",
45
+ "prepare": "husky"
46
+ },
47
+ "dependencies": {
48
+ "chalk": "4",
49
+ "js-yaml": "^4.1.0",
50
+ "lodash": "^4.17.21"
51
+ },
52
+ "devDependencies": {
53
+ "@diplodoc/lint": "^1.2.1",
54
+ "@diplodoc/tsconfig": "^1.0.2",
55
+ "@types/jest": "^28.1.7",
56
+ "@types/js-yaml": "^4.0.9",
57
+ "@types/lodash": "^4.17.15",
58
+ "jest": "^29.7.0",
59
+ "npm-run-all": "^4.1.5",
60
+ "ts-dedent": "^2.2.0",
61
+ "ts-jest": "^29.2.6",
62
+ "typescript": "^5.2.2"
63
+ }
64
+ }