-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.62 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
{
"name": "@gochewy/lib",
"author": "Ephemere Creative Ltd",
"module": "dist/chewy-lib.esm.js",
"version": "0.1.1-beta.38",
"license": "AGPL-3.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch --target node",
"build": "tsdx build --target node",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"lint": "yarn eslint ./src",
"prepare": "tsdx build && husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"build-schemas": "ts-node --project ./src/scripts/tsconfig.json ./src/scripts/build-schemas/build-schemas.ts",
"bump-package": "ts-node --project ./src/scripts/tsconfig.json ./src/scripts/bump-package-version/bump-package-version.ts",
"build-compose-schema": "ts-node --project ./src/scripts/tsconfig.json ./src/scripts/build-compose-schema/build-compose-schema.ts",
"bump-tag": "bump --tag --commit --push"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/chewy-lib.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/chewy-lib.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"@pulumi/pulumi": "^3.61.0",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/node-fetch": "^2",
"@types/rmfr": "^2.0.1",
"@types/semver": "^7.3.13",
"colorette": "^2.0.19",
"dependency-graph": "^0.11.0",
"dugite": "^2.1.0",
"eslint-config-prettier": "^8.5.0",
"find-git-exec": "^0.0.4",
"find-up": "^5.0.0",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^11.0.2",
"node-fetch": "^2",
"rmfr": "^2.0.0",
"semver": "^7.3.8",
"ts-node": "^10.9.1",
"ts-to-zod": "^1.13.1",
"zod": "^3.19.1",
"zod-to-json-schema": "^3.19.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"size-limit": "^8.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"version-bump-prompt": "^6.1.0"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.11.1",
"**/@typescript-eslint/parser": "^4.11.1",
"**/jest": "^26.6.3",
"**/ts-jest": "^26.4.4",
"**/typescript": "^4.1.3"
}
}