-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "tstevedore",
"version": "1.0.10",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc",
"ci": "tsc"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/trevor-coleman/tstevedore",
"author": "Trevor Coleman <[email protected]>",
"dependencies": {
"@babel/parser": "^7.22.4",
"@inquirer/prompts": "^2.1.1",
"@types/diff": "^5.0.3",
"@types/node": "^20.2.5",
"@types/yargs": "^17.0.24",
"ast-types": "^0.14.2",
"diff": "^5.1.0",
"glob": "^10.2.6",
"prettier": "^2.8.8",
"recast": "^0.23.2",
"typescript": "^5.1.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/prettier": "^2.7.3",
"eslint": "^8.42.0",
"eslint-plugin-unicorn": "^47.0.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1"
},
"eslintConfig": {
"env": {
"es2022": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"unicorn"
]
},
"packageManager": "[email protected]"
}