-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.79 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
{
"name": "@block65/pommel",
"version": "5.0.1",
"private": false,
"description": "Store and access sensitive environment variables using your operating system's secure keystore.",
"keywords": [
"secret",
"keystore",
"environment",
"variables",
"env",
"vault"
],
"bugs": {
"url": "https://github.com/block65/pommel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/block65/pommel"
},
"license": "MIT",
"type": "module",
"exports": {
"types": "./dist/bin/index.d.ts"
},
"bin": {
"pommel": "./dist/bin/cli.js"
},
"files": [
"./dist/bin/*.js"
],
"scripts": {
"build": "tsc",
"build:clean": "rimraf dist/**",
"build:watch": "tsc -w",
"prepare": "husky install",
"release": "standard-version",
"test": "jest"
},
"dependencies": {
"colorette": "^2.0.19",
"dotenv": "^16.0.3",
"inquirer": "^9.1.5",
"keytar": "^7.9.0",
"read-pkg-up": "^9.1.0",
"sade": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@block65/eslint-config": "^9.0.0-alpha.0",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@jest/globals": "^29.5.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.0",
"@types/node": ">=16",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.0",
"standard-version": "^9.5.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16"
}
}