-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.22 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.22 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
{
"url": "https://tiddly-gittly.github.io/Modern.TiddlyDev/",
"license": "MIT",
"version": "0.0.9",
"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",
"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",
"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",
"test:playwright": "playwright test",
"test:playwright:headed": "playwright test --headed",
"test:playwright:debug": "playwright test --debug"
},
"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": "^3.1.3",
"@types/jasmine": "^6.0.0",
"@types/node": "^25.6.0",
"dprint": "^0.54.0",
"eslint-config-tidgi": "^2.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.9",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"tw5-typed": "^1.1.5",
"typescript": "^6.0.2",
"@playwright/test": "^1.59.1"
},
"dependencies": {
"@ungap/structured-clone": "^1.3.0",
"lodash": "^4.17.23",
"npm-check-updates": "^20.0.1",
"tiddlywiki": "^5.3.8",
"tiddlywiki-plugin-dev": "^0.5.7",
"tidgi-shared": "^0.1.5",
"ua-parser-js": "^2.0.9"
}
}