generated from PlasmoHQ/qtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "@plasmohq/rps",
"version": "1.8.7",
"description": "Run scripts in parallel or in sequence.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"run-s": "./bin/run-s.mjs",
"run-p": "./bin/run-p.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"dev": "tsup src/run-p.ts src/run-s.ts src/index.ts --watch --sourcemap",
"build": "tsup src/run-p.ts src/run-s.ts src/index.ts --dts-resolve --format esm --minify --clean",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "pnpm build"
},
"repository": {
"type": "git",
"url": "https://github.com/plasmohq/rps.git"
},
"author": "Plasmo Corp. <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/cross-spawn": "6.0.6",
"@types/minimatch": "5.1.2",
"@types/node": "20.11.5",
"@types/shell-quote": "1.7.5",
"prettier": "3.2.4",
"tsup": "8.0.1",
"typescript": "5.3.3"
},
"dependencies": {
"cross-spawn": "7.0.3",
"minimatch": "9.0.3",
"pidtree": "0.6.0",
"read-pkg": "9.0.1",
"shell-quote": "1.8.1"
}
}