-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "plugin-machine",
"version": "0.10.6",
"description": "A CLI for Plugin Machine",
"homepage": "https://pluginmachine.com/cli",
"repository": "github:imaginarymachines/plugin-machine-cli",
"bugs": {
"url": "https://github.com/imaginarymachines/plugin-machine-cli/issues"
},
"license": "GPL-3.0-or-later",
"bin": {
"plugin-machine": "./dist/index.js"
},
"files": [
"dist/data",
"dist/commands",
"dist/lib",
"dist/index.js",
"dist/index.map.js",
"dist/pluginMachine.js",
"dist/pluginMachine.map.js",
"package.json",
"dist/package.json",
"dist/api.js"
],
"main": "dist/api.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "npm run build-ts && node --inspect-brk dist/index.js",
"type-check": "tsc --noEmit && eslint .",
"lint": "tsc --noEmit && eslint . --fix",
"_build": "npm run type-check && npm run build-ts",
"build": "npm run build-ts && cp package.json dist/package.json",
"build-ts": "rm -Rf dist/ && swc src/ --config-file .swcrc_build -d dist/",
"test": "jest --watch",
"test:ci": "jest --ci",
"coverage": "jest --coverage",
"prepack": "npm run test:ci && npm run build"
},
"devDependencies": {
"@swc/cli": "^0.1.51",
"@swc/core": "^1.2.108",
"@swc/jest": "^0.2.5",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"jest-watch-typeahead": "^1.0.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"keywords": [],
"dependencies": {
"archiver": "^5.3.0",
"arg": "^5.0.1",
"axios": "^0.27.2",
"form-data": "^4.0.0",
"fs-extra": "^10.0.1",
"get-file-object-from-local-path": "^1.0.2",
"inquirer": "^8.2.0",
"request": "^2.88.2",
"shelljs": "^0.8.5"
},
"engines": {
"node": ">=16"
}
}