generated from tiddly-gittly/TiddlyWiki-TS-Plugin-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·59 lines (59 loc) · 1.86 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
{
"url": "https://github.com/tiddly-gittly/tw-example-plugin",
"license": "MIT",
"version": "0.0.1",
"scripts": {
"dev": "tiddlywiki-plugin-dev dev",
"dev:wiki": "tiddlywiki-plugin-dev dev --write-wiki",
"test": "tiddlywiki-plugin-dev test",
"reset": "rimraf ./**/node_modules",
"clean": "rimraf dist",
"prepare": "husky install",
"update": "npm-check-updates -u",
"new": "tiddlywiki-plugin-dev new",
"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",
"postinstall": "sass-migrator division node_modules/spectre.css/src/*.scss"
},
"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"
]
},
"dependencies": {
"@json-editor/json-editor": "2.15.1",
"esbuild-sass-plugin": "^3.3.0",
"npm-check-updates": "^16.14.20",
"spectre.css": "^0.5.9",
"tiddlywiki": "^5.3.3",
"tiddlywiki-plugin-dev": "^0.2.1"
},
"devDependencies": {
"@modern-js/tsconfig": "^2.51.0",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.13.0",
"dprint": "^0.46.1",
"eslint-config-tidgi": "1.2.3",
"husky": "^9.0.11",
"json-schema": "^0.4.0",
"lint-staged": "^15.2.5",
"postcss": "^8.4.38",
"rimraf": "^5.0.7",
"sass-migrator": "^2.0.3",
"tw5-typed": "^0.5.11",
"typescript": "^5.4.5"
}
}