-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.59 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@andrei.fyi/auto",
"version": "0.0.0-semantic-release",
"repository": "https://github.com/3rd/auto",
"description": "Powerful TypeScript-based automation tool",
"keywords": [
"typescript",
"cli",
"automation"
],
"author": {
"name": "Andrei Neculaesei",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.mjs",
"exports": {
"./loader-esm": {
"import": "./dist/loader-esm.mjs"
},
"./loader-cjs": {
"require": "./dist/loader-cjs.cjs"
},
"./globals": {
"import": "./dist/globals/index.mjs",
"types": "./dist/globals/index.d.ts"
}
},
"bin": {
"auto": "./dist/main.js"
},
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"dev": "pnpm test:watch",
"build:watch": "pkgroll --watch",
"build": "pnpm run clean && pkgroll --target=node18",
"test": "NODE_OPTIONS='--import=tsx --no-warnings' ava",
"test:watch": "NODE_OPTIONS='--import=tsx --no-warnings' ava --watch",
"e2e": "docker run --rm -it $(docker build -f src/e2e/Dockerfile -q .)",
"tsc": "tsc",
"prepare": "husky install",
"prepublishOnly": "pnpm run build && pnpm run tsc && pnpm run test",
"clean": "rm -rf dist"
},
"ava": {
"extensions": {
"ts": "commonjs"
}
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 120,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.11.5",
"@types/sinon": "^17.0.3",
"ava": "^6.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"pkgroll": "^2.0.1",
"prettier": "^3.2.4",
"semantic-release": "^23.0.0",
"sinon": "^17.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.202",
"@types/which": "^3.0.3",
"chalk": "^5.3.0",
"cleye": "^1.3.2",
"cross-spawn": "^7.0.3",
"env-paths": "^3.0.0",
"execa": "^8.0.1",
"find-up": "^7.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"lodash": "^4.17.21",
"tsx": "^4.7.0",
"which": "^4.0.0"
}
}