forked from davideicardi/live-plugin-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "@moonjot/live-plugin-manager",
"version": "0.20.0",
"description": "Install and uninstall any node package at runtime from npm registry",
"keywords": [
"plugin",
"package",
"npm",
"install"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"pub": "yarn build && yarn publish --access public",
"src-build-w": "tsc -w",
"develop": "npm run src-build-w",
"pretest": "tsc -p test",
"test": "mocha --require source-map-support/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/castroCrea/live-plugin-manager.git"
},
"author": "Davide Icardi",
"license": "ISC",
"bugs": {
"url": "https://github.com/castroCrea/live-plugin-manager.git/issues"
},
"homepage": "https://github.com/castroCrea/live-plugin-manager.git#readme",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/lockfile": "^1.0.2",
"@types/node-fetch": "^2.5.12",
"@types/semver": "^7.3.9",
"@types/tar": "^6.1.1",
"@types/url-join": "4.0.1",
"@types/chai": "^4.3.14",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.96",
"chai": "^4.4.1",
"mocha": "^9.2.2",
"source-map-support": "^0.5.21",
"typescript": "^4.9.5"
},
"dependencies": {
"debug": "^4.3.4",
"fs-extra": "^10.1.0",
"lockfile": "^1.0.4",
"node-fetch": "^2.7.0",
"proxy-agent": "^6.4.0",
"semver": "^7.6.0",
"tar": "^6.2.1",
"url-join": "^4.0.1"
},
"publishConfig": {
"@moonjot:registry": "https://registry.npmjs.org/"
}
}