-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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": "vget",
"version": "1.0.0",
"description": "vget",
"scripts": {
"lint": "eslint . --ext .ts",
"clean:bin": "node build-process/clean.mjs \"bin\"",
"clean:dist": "node build-process/clean.mjs \"dist\"",
"clean:modules": "node build-process/clean.mjs \"modules\"",
"clean:project": "if exist \\node_modules (yarn clean:bin && yarn clean:modules)",
"build": "node build-process/build-dev.mjs",
"prerebuild": "yarn clean:project",
"rebuild": "yarn build",
"run:app": "nodemon --config nodemon.json src/main.ts",
"publish:app": "node build-process/publish.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CalvinWilkinson/vget.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CalvinWilkinson/vget/issues"
},
"homepage": "https://github.com/CalvinWilkinson/vget#readme",
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"@vercel/ncc": "^0.28.6",
"axios": "^0.21.1",
"node": "^16.5.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chalk": "^4.1.1",
"cli-progress": "^3.9.0",
"eslint": "^7.30.0",
"glob": "^7.1.7",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}