-
-
Notifications
You must be signed in to change notification settings - Fork 274
/
Copy pathpackage.json
144 lines (144 loc) · 4.09 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@tapjs/tapjs",
"private": true,
"workspaces": [
"src/*"
],
"type": "module",
"prettier": {
"experimentalTernaries": true,
"semi": false,
"printWidth": 70,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@esbuild-kit/cjs-loader": "^2.4.4",
"@esbuild-kit/esm-loader": "^2.6.5",
"@isaacs/ts-node-temp-fork-for-pr-2009": "^10.9.7",
"@tapjs/processinfo": "^3.1.8",
"@types/diff": "^5.0.9",
"@types/ms": "^0.7.34",
"@types/mustache": "^4.2.5",
"@types/node": "^20.14.10",
"@types/node-fetch": "^2.6.11",
"@types/npmcli__promise-spawn": "^6.0.3",
"@types/opener": "^1.4.3",
"@types/pacote": "^11.1.8",
"@types/react": "^18.2.72",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@types/which": "^3.0.3",
"async-hook-domain": "^4.0.1",
"braces": "^3.0.3",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"chokidar": "^3.6.0",
"clock-mock": "^2.0.2",
"diff": "^5.2.0",
"eleventy-plugin-toc": "^1.1.5",
"events-to-array": "^2.0.3",
"foreground-child": "^3.1.1",
"function-loop": "^4.0.0",
"glob": "^11.0.0",
"ink": "^5.0.1",
"ink-testing-library": "^4.0.0",
"is-actual-promise": "^1.0.1",
"jackspeak": "^4.0.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"minimatch": "^10.0.1",
"minipass": "^7.0.4",
"mkdirp": "^3.0.1",
"ms": "^2.1.3",
"mustache": "^4.2.0",
"netlify-cli": "^17.29.0",
"nock": "^13.5.4",
"node-fetch": "^3.3.2",
"nx": "^16.9.1",
"opener": "^1.5.2",
"package-json-from-dist": "^1.0.0",
"pacote": "^18.0.6",
"pagefind": "^1.0.4",
"patch-console": "^2.0.0",
"path-scurry": "^2.0.0",
"polite-json": "^5.0.0",
"prettier": "^3.2.5",
"prismjs": "^1.29.0",
"prismjs-terminal": "^1.2.3",
"react": "^18.2.0",
"react-element-to-jsx-string": "^15.0.0",
"read": "^3.0.1",
"resolve-import": "^2.0.0",
"rimraf": "^6.0.0",
"semver": "^7.6.0",
"signal-exit": "4.1",
"string-length": "^6.0.0",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"sync-content": "^2.0.1",
"tap": "^18.0.0-0",
"trivial-deferred": "^2.0.0",
"tshy": "^3.0.2",
"tsx": "^4.16.2",
"typedoc": "^0.26.3",
"typescript": "5.5",
"walk-up-path": "^4.0.0",
"which": "^4.0.0",
"yaml": "^2.4.1",
"yaml-types": "^0.4.0"
},
"scripts": {
"start": "npm run start -w src/docs",
"predocsbuild": "npm run bootstrap",
"docsbuild": "npm run build -w src/docs",
"pretest": "rimraf src/test/test-built/dist/node_modules",
"presnap": "rimraf src/test/test-built/dist/node_modules",
"test": "nx run-many -t test",
"test:bootstrap": "bash ./scripts/test-bootstrap.sh",
"snap": "TAP_TYPECHECK=0 TAP_TIMEOUT=240 nx run-many -t snap",
"format": "nx run-many -t format",
"typedoc": "typedoc",
"bootstrap": "bash ./scripts/bootstrap.sh",
"build": "node ./scripts/default-build.mjs",
"pindeps": "node ./scripts/version.mjs pindeps",
"v": "node ./scripts/version.mjs",
"p": "bash ./scripts/bump-changed.sh",
"pub": "npm run v -- pub",
"deploy:docs": "npm run deploy:prod -w src/docs",
"postv": "npm run deploy:docs",
"pj": "node scripts/normalize-package-json.js src/*/package.json"
},
"repository": "https://github.com/tapjs/tapjs",
"license": "BlueOak-1.0.0",
"engines": {
"node": "20 || >=22"
},
"overrides": {
"braces@3": "^3.0.3",
"[email protected] - 1.5.1": "^1.7.2",
"netlify-cli": {
"braces": "^3.0.3",
"micromatch": "^4.0.7",
"chokidar": {
"braces": "^3.0.3"
},
"http-proxy-middleware": {
"micromatch": {
".": "^4.0.7",
"braces": "^3.0.3"
}
}
},
"[email protected]": "^4.0.7",
"[email protected]": "6.2"
}
}