-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "@signal24/config",
"version": "1.8.1",
"description": "Runtime configuration encryption helpers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"config-cli": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./load": "./dist/load.js"
},
"scripts": {
"dev": "ts-node src/cli.ts",
"build": "rm -rf dist && tsc -p tsconfig.json && chmod +x dist/cli.js",
"format": "prettier --write . && eslint src --rule 'prettier/prettier: off' --fix",
"test": "jest",
"watch": "tsc -w -p tsconfig.json"
},
"author": "Sean Ferguson <hello@sgnl24.com>",
"license": "ISC",
"dependencies": {
"commander": "^12.0.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"buildkite-test-collector": "^1.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"type-fest": "^4.13.0",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}