-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.94 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
72
73
74
75
76
77
{
"name": "ableton-package-manager",
"version": "0.1.3",
"license": "MIT",
"bin": {
"apm": "dist/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"format": "eslint --fix source",
"lint": "eslint source",
"prepare": "npm run build",
"pretest": "npm run build",
"start": "npm run build && dist/cli.js",
"test": "npm run lint && ava",
"watch": "watch 'npm run build' source"
},
"files": [
"dist/**/*.js"
],
"dependencies": {
"@types/semver": "^7.3.10",
"@types/xml2js": "^0.4.11",
"hosted-git-info": "^5.0.0",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-spinner": "^4.0.3",
"ink-table": "^3.0.0",
"meow": "^9.0.0",
"react": "^17.0.2",
"replace-homedir": "^2.0.0",
"semver": "^7.3.7",
"simple-git": "^3.10.0",
"xml2js": "^0.4.23"
},
"ava": {
"typescript": {
"extensions": [
"tsx"
],
"rewritePaths": {
"source/": "dist/"
},
"compile": false
}
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/hosted-git-info": "^3.0.2",
"@types/ink-big-text": "^1.2.1",
"@types/ink-gradient": "^2.0.1",
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"ava": "^4.3.1",
"chalk": "^4.1.2",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^2.1.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"watch": "^1.0.2"
}
}