-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"description": "npm scripts to build plugins",
"tsFiles": [
"widget",
"index"
],
"tsxFiles": [
"example"
],
"license": "MIT",
"name": "tw-react",
"version": "0.6.4",
"url": "https://github.com/tiddly-gittly/tw-react",
"author": "Lin Onetwo",
"types": "dist/lib/index.d.ts",
"files": [
"dist/output/*.json",
"dist/plugins/linonetwo/tw-react/**/*.js",
"dist/lib/**/*.d.ts"
],
"main": "dist/plugins/linonetwo/tw-react/index.js",
"scripts": {
"make": "pnpm run clean && pnpm run build",
"dev-demo": "pnpm run dev && zx ./scripts/build-demo-html.mjs && cd ./dist/output && serve .",
"dev": "pnpm run make && pnpm run download-react && pnpm run run-action && zx ./scripts/mv-dev.mjs",
"clean": "rimraf ./dist",
"build": "zx esbuild.config.mjs && zx scripts/after-build.mjs",
"build:type": "tsc --emitDeclarationOnly --declaration && zx scripts/after-build-type.mjs",
"run-action": "zx scripts/run-action.mjs",
"prepublishOnly": "pnpm run make && pnpm run build:type",
"download-react": "zx scripts/download-react.mjs",
"installType": "typesync"
},
"devDependencies": {
"@modern-js/tsconfig": "^2.45.0",
"@types/archiver": "6.0.2",
"@types/eslint": "8.56.2",
"@types/fs-extra": "11.0.4",
"@types/node": "^20.11.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"archiver": "6.0.1",
"browserslist": "4.22.2",
"dprint": "^0.45.0",
"esbuild": "0.19.11",
"esbuild-plugin-browserslist": "0.10.0",
"eslint-config-tidgi": "^1.1.5",
"fs-extra": "11.2.0",
"github-action-ts-run-api": "3.0.4",
"react": "^19.0.0",
"rimraf": "^5.0.5",
"serve": "14.2.1",
"tiddlywiki": "5.3.6",
"tslib": "2.8.1",
"tw5-plugin-packer": "0.0.10",
"tw5-typed": "0.5.14",
"typescript": "5.7.2",
"typesync": "0.12.1",
"zx": "7.2.3"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@wessberg/connection-observer": "^1.0.5"
},
"pnpm": {
"patchedDependencies": {
"@wessberg/[email protected]": "patches/@[email protected]"
}
}
}