-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "install-rspack",
"version": "0.3.0",
"description": "Overrides rspack with latest/canary/nightly/beta version",
"type": "module",
"exports": {
".": "./outfile.mjs"
},
"bin": "./outfile.mjs",
"files": [
"outfile.mjs"
],
"scripts": {
"prepare": "pnpm run build",
"build": "node ./build.js",
"release": "node ./scripts/release.mjs",
"format": "prettier ./index.ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rspack-contrib/install-rspack.git"
},
"keywords": [
"rspack",
"canary",
"alpha",
"beta"
],
"author": "Soon <[email protected]>",
"license": "MIT",
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "18",
"esbuild": "^0.19.3",
"execa": "^8.0.1",
"picocolors": "^1.0.0",
"prettier": "^3.0.3",
"semver": "^7.6.3",
"fs-extra": "11.2.0",
"ts-node": "^10.9.1"
},
"engines": {
"node": ">= 18.11.0"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"packageManager": "[email protected]+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2"
}