generated from tiddly-gittly/TiddlyWiki-TS-Plugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 2 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
{
"url": "https://github.com/tiddly-gittly/tiddlywiki-whiteboard",
"license": "MIT",
"version": "0.0.1",
"scripts": {
"dev": "tiddlywiki-plugin-dev dev",
"dev:lan": "tiddlywiki-plugin-dev dev --lan",
"dev:wiki": "tiddlywiki-plugin-dev dev --write-wiki",
"test": "tiddlywiki-plugin-dev test",
"build": "npm run clean && tiddlywiki-plugin-dev build",
"publish": "npm run clean && tiddlywiki-plugin-dev publish",
"reset": "rimraf ./**/node_modules",
"clean": "rimraf dist",
"prepare": "husky install",
"update": "npm-check-updates -u && 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": ">=20"
},
"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/tsconfig": "^2.64.3",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.4",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"beautiful-react-hooks": "^5.0.2",
"dprint": "^0.49.0",
"eslint-config-tidgi": "1.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.2",
"requestidlecallback-polyfill": "^1.0.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tw-react": "^0.6.4",
"tw5-typed": "^0.5.14",
"typescript": "^5.7.3"
},
"dependencies": {
"@tldraw/assets": "3.8.1",
"@tldraw/editor": "3.8.1",
"@tldraw/tldraw": "3.8.1",
"downshift": "^9.0.8",
"npm-check-updates": "^17.1.14",
"tiddlywiki": "^5.3.6",
"tiddlywiki-plugin-dev": "^0.3.2"
}
}