generated from tiddly-gittly/TiddlyWiki-TS-Plugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.5 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.5 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
{
"url": "https://tiddly-gittly.github.io/Modern.TiddlyDev/",
"license": "MIT",
"version": "0.0.2",
"scripts": {
"dev": "tiddlywiki-plugin-dev dev",
"dev:wiki": "tiddlywiki-plugin-dev dev --write-wiki",
"dev:lan": "tiddlywiki-plugin-dev dev --lan",
"test": "tiddlywiki-plugin-dev test",
"build": "npm run clean && tiddlywiki-plugin-dev build",
"lint": "eslint ./src --ext js,ts,tsx,json",
"lint:fix": "eslint ./src --ext ts,tsx,json --fix",
"check": "tsc --noEmit --skipLibCheck",
"publish": "npm run clean && tiddlywiki-plugin-dev publish",
"reset": "rimraf ./**/node_modules",
"clean": "rimraf dist",
"prepare": "husky install",
"update": "npm-check-updates -u && pnpm exec dprint config update",
"new": "tiddlywiki-plugin-dev new",
"build:library": "npm run clean && tiddlywiki-plugin-dev build --library --output dist/library",
"publish:offline": "npm run clean && tiddlywiki-plugin-dev publish --offline"
},
"engines": {
"node": ">=22"
},
"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.59.0",
"@modern-js/tsconfig": "^2.69.2",
"@types/lodash": "^4.17.21",
"@types/node": "^24.10.1",
"@types/pinyin": "^2.10.2",
"@types/react": "^19.2.7",
"dprint": "^0.50.2",
"eslint-config-tidgi": "^2.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"npm-check-updates": "^19.1.2",
"postcss": "^8.5.6",
"rimraf": "^6.1.2",
"tiddlywiki": "^5.3.8",
"tiddlywiki-plugin-dev": "^0.3.2",
"ts-node": "^10.9.2",
"tw5-typed": "^1.1.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@algolia/autocomplete-core": "^1.19.4",
"@algolia/autocomplete-js": "^1.19.4",
"@algolia/autocomplete-plugin-recent-searches": "^1.19.4",
"@algolia/autocomplete-shared": "^1.19.4",
"@algolia/autocomplete-theme-classic": "^1.19.4",
"@seznam/visibility-observer": "^1.1.0",
"fuse.js": "^7.1.0",
"lodash": "^4.17.21",
"pinyin": "4.0.0",
"segmentit": "^2.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"core-js",
"dprint",
"esbuild",
"svelte-preprocess"
]
}
}