-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.01 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
{
"name": "yume-dsl-rich-text",
"version": "1.5.0",
"description": "Single-pass recursive rich-text DSL parser without regex, with pluggable tag handlers. Markdown alternative.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"scripts": {
"build": "tsup --target esnext",
"lint": "npm run lint:eslint && tsc --noEmit -p tsconfig.json",
"lint:eslint": "eslint \"src/**/*.ts\"",
"test": "tsup --target esnext && node --import tsx tests/run-dsl-tests.ts",
"test:coverage": "YUME_DSL_COVERAGE_SOURCEMAP=1 tsup --target esnext && c8 node --enable-source-maps --import tsx tests/run-dsl-tests.ts",
"test:coverage:win": "set YUME_DSL_COVERAGE_SOURCEMAP=1&& tsup --target esnext && c8 node --enable-source-maps --import tsx tests/run-dsl-tests.ts",
"prepublishOnly": "npm run build",
"run-coverage-front-end": "npm run test:coverage && node ./scripts/serve-coverage.mjs"
},
"keywords": [
"rich-text",
"dsl",
"parser",
"custom-markup",
"single-pass",
"recursive",
"pluggable",
"no-regex",
"markdown-alternative",
"blog-engine",
"tokenizer",
"ast"
],
"author": "Hoshino Yumeka",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chiba233/yumeDSL.git"
},
"homepage": "https://github.com/chiba233/yumeDSL#readme",
"bugs": {
"url": "https://github.com/chiba233/yumeDSL/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^25.5.0",
"c8": "^11.0.0",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
}
}