This repository has been archived by the owner on Jun 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.62 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"url": "https://github.com/tiddly-gittly/tw-example-plugin",
"tsFiles": [
"index"
],
"ignoredExtensionsWhenBuildPlugin": [
".ts",
".tsx",
".snap",
".tldr",
".md",
".json"
],
"license": "MIT",
"version": "0.0.1",
"types": "",
"files": [],
"scripts": {
"dev": "cross-env NODE_ENV=development npm run make && zx scripts/dev/development.mjs",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.js",
"dev-html": "cross-env CI=true NODE_ENV=production npm run make && npm run run-action && zx ./scripts/build-demo-html.mjs && cd ./dist/output && serve .",
"make": "npm run clean && npm run build",
"clean": "rimraf dist",
"build": "zx scripts/build.mjs && zx scripts/after-build.mjs",
"run-action": "zx scripts/run-action.mjs",
"prepublishOnly": "npm run make && tsc --emitDeclarationOnly",
"build:types": "tsc --emitDeclarationOnly",
"installType": "typesync"
},
"devDependencies": {
"@types/archiver": "5.3.2",
"@types/eslint": "8.40.0",
"@types/fs-extra": "11.0.1",
"@types/jest": "29.5.1",
"@types/lodash": "^4.14.194",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"archiver": "5.3.1",
"browserslist": "4.21.5",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"dprint": "^0.36.1",
"esbuild": "0.17.19",
"esbuild-plugin-browserslist": "0.7.0",
"eslint-plugin-dprint-integration": "^0.3.0",
"eslint": "8.41.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "34.0.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-autofix": "1.1.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-security-node": "1.1.1",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"eslint-plugin-unicorn": "47.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"fs-extra": "11.1.1",
"get-port": "^6.1.2",
"github-action-ts-run-api": "3.0.3",
"jest": "29.5.0",
"preact": "^10.15.0",
"rimraf": "^5.0.1",
"serve": "14.2.0",
"tiddlywiki": "5.2.7",
"ts-jest": "29.1.0",
"tslib": "2.5.2",
"tw5-plugin-packer": "0.0.10",
"tw5-typed": "0.2.27",
"typescript": "5.0.4",
"typesync": "0.11.1",
"ws": "^8.13.0",
"zx": "7.2.2"
}
}