-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·77 lines (77 loc) · 2.6 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
{
"url": "https://gk0wk.github.io/TW5-CodeMirror-Enhanced/",
"license": "MIT",
"name": "tw5-codemirror-enhanced",
"description": "Implement a swift and rich extension framework for TiddlyWiki5's CodeMirror editor, including TiddlyWiki5 (`text/vnd.tiddlywiki`) syntax highlighting, Wiki link auto-completion, clickable links, Tiddler preview, and more. More features ( syntax tree, syntax completion , WYSIWYG mode , quick template input , etc. ) is under development . This framework is open source framework , anyone is welcome to join the development , the documentation is being written .",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/Gk0Wk/TW5-CodeMirror-Enhanced.git"
},
"keywords": [
"tiddlywiki",
"codemirror",
"autocomplete"
],
"author": {
"name": "Gk0Wk",
"email": "[email protected]",
"url": "https://github.com/Gk0Wk"
},
"contributors": [
{
"name": "linonetwo",
"email": "[email protected]",
"url": "https://github.com/linonetwo"
}
],
"bugs": {
"url": "https://github.com/Gk0Wk/TW5-CodeMirror-Enhanced/issues"
},
"homepage": "https://github.com/Gk0Wk/TW5-CodeMirror-Enhanced#readme",
"scripts": {
"reset": "rimraf ./**/node_modules",
"clean": "rimraf dist",
"prepare": "husky install",
"update": "npm-check-updates -u",
"new": "tiddlywiki-plugin-dev new",
"dev": "tiddlywiki-plugin-dev dev",
"build": "npm run clean && tiddlywiki-plugin-dev build",
"build:library": "npm run clean && tiddlywiki-plugin-dev build --library --output dist/library",
"publish": "npm run clean && tiddlywiki-plugin-dev publish",
"publish:offline": "npm run clean && tiddlywiki-plugin-dev publish --offline"
},
"engines": {
"node": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"devDependencies": {
"@modern-js/eslint-config": "^2.20.0",
"@modern-js/tsconfig": "^2.20.0",
"@types/codemirror": "^5.60.7",
"@types/node": "^20.2.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tw5-typed": "^0.2.27",
"typescript": "^5.0.4"
},
"dependencies": {
"npm-check-updates": "^16.10.12",
"tiddlywiki": "^5.2.7",
"tiddlywiki-plugin-dev": "^0.0.36"
}
}