-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·58 lines (58 loc) · 1.77 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
{
"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",
"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",
"prepare": "husky install",
"update": "npm-check-updates -u && pnpm exec dprint config update",
"clean": "rimraf dist"
},
"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.59.0",
"@modern-js/tsconfig": "^2.63.2",
"@types/node": "^22.10.2",
"dprint": "^0.47.6",
"eslint-config-tidgi": "^1.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tw5-typed": "^0.5.14",
"npm-check-updates": "^17.1.11",
"typescript": "^5.7.2",
"tiddlywiki": "^5.3.6",
"tiddlywiki-plugin-dev": "^0.3.2"
},
"dependencies": {
"chokidar": "^4.0.1"
},
"pnpm": {
"patchedDependencies": {
"eslint-plugin-dprint-integration": "patches/eslint-plugin-dprint-integration.patch"
}
}
}