-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "@drovp/run",
"version": "4.0.0",
"description": "Execute one or multiple console commands on dropped items.",
"homepage": "https://github.com/drovp/run",
"bugs": "https://github.com/drovp/run/issues",
"repository": "github:drovp/run",
"main": "dist/index.js",
"keywords": [
"drovpplugin",
"run",
"execute",
"cli",
"command"
],
"author": "tomasklaen",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"*.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf dist",
"start": "npm-run-all clean watch",
"preversion": "npm-run-all clean build",
"git-push": "git push",
"npm-publish": "npm publish",
"postversion": "npm-run-all git-push npm-publish"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@drovp/types": "^4.11.0",
"dayjs": "^1.11.4",
"expand-template-literal": "^1.0.3",
"platform-paths": "^1.2.2",
"pretty-ms": "^7.0.1"
}
}