forked from configu/configu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.34 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
{
"name": "@configu/configu",
"version": "0.0.0",
"description": "Configu OSS monorepo powered by TypeScript, Node.js and pnpm",
"keywords": [
"cfgu",
"config",
"configu",
"configuration",
"env",
"environment",
"environment variable",
"variable"
],
"homepage": "https://github.com/configu/configu#readme",
"repository": "github:configu/configu",
"license": "Apache-2.0",
"author": {
"name": "@configu/dev",
"email": "[email protected]",
"url": "https://configu.com"
},
"packageManager": "[email protected]",
"devEngines": {
"runtime": {
"name": "node",
"version": "22.12.0",
"onFail": "error"
}
},
"config": {
"format": "**/*.{js,mjs,ts,mts,md,mdx,json,yml,yaml}",
"lint": ".",
"test": "packages/**/src/**/*.test.ts",
"node": "22.12.0",
"pnpm": "10.4.1"
},
"scripts": {
"prepare": "pnpm pkg:art && pnpm pkg:hooks && pnpm pkg:config && pnpm build",
"clean": "pnpm -r clean",
"clean:cache": "shx rm -rf **/node_modules **/dist .eslintcache lcov.info",
"clean:all": "pnpm clean && pnpm clean:cache",
"format": "prettier --ignore-path .gitignore --ignore-path .prettierignore",
"format:check": "pnpm format --check $npm_package_config_format",
"format:fix": "pnpm format --write $npm_package_config_format",
"lint": "eslint --ignore-path .gitignore --cache",
"lint:check": "pnpm lint --quiet $npm_package_config_lint",
"lint:fix": "pnpm lint --fix $npm_package_config_lint",
"pkg:art": "shx cat docs/images/ascii-art.txt",
"pkg:hooks": "husky",
"pkg:config": "tsx prepare.mts",
"pkg:check": "syncpack lint",
"pkg:fix": "syncpack format && syncpack fix-mismatches",
"test": "tsx --test $npm_package_config_test",
"test:cov": "tsx --test --experimental-test-coverage --test-reporter=spec --test-reporter=lcov --test-reporter-destination=stdout --test-reporter-destination=lcov.info $npm_package_config_test",
"test:watch": "tsx --test --watch $npm_package_config_test",
"build": "pnpm build:libs && pnpm install --ignore-scripts && pnpm build:interfaces",
"build:libs": "pnpm --filter \"@configu/sdk\" --filter \"@configu/formatters\" build",
"build:interfaces": "pnpm --filter \"@configu/schema\" --filter \"@configu/cli\" --filter \"@configu/proxy\" build",
"build:stores": "pnpm -r --filter \"./packages/stores/*\" build",
"build:docs": "pnpm --filter \"@configu/docs\" build",
"start": "pnpm prepare:art"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@cspell/eslint-plugin": "^8.17.3",
"@microsoft/api-extractor": "^7.50.0",
"@types/lodash": "^4.17.15",
"@types/node": "22.10.10",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"shx": "^0.3.4",
"syncpack": "^13.0.2",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"zx": "8.3.2"
},
"pnpm": {
"patchedDependencies": {
"giget": "patches/giget.patch",
"@npmcli/run-script": "patches/@npmcli__run-script.patch"
},
"neverBuiltDependencies": []
}
}