-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.6 KB
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
106
107
108
109
110
111
112
{
"name": "@smooai/utils",
"version": "1.2.9",
"description": "A collection of shared utilities and tools used across SmooAI projects. This package provides common functionality to standardize and simplify development across all SmooAI repositories.",
"keywords": [
"utils",
"tools",
"aws-lambda",
"hono",
"smooai"
],
"homepage": "https://github.com/SmooAI/utils#readme",
"bugs": {
"url": "https://github.com/SmooAI/utils/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SmooAI/utils.git"
},
"license": "MIT",
"author": {
"name": "SmooAI",
"email": "brent@smooai.com",
"url": "https://smooai.com"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"bin": {
"create-entry-points": "./dist/scripts/createEntryPoints.js"
},
"files": [
"dist/**"
],
"scripts": {
"build": "pnpm createEntryPoints && pnpm exec tsup",
"check-all": "pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run build",
"ci:publish": "pnpm build && pnpm changeset publish",
"createEntryPoints": "pnpm vite-node ./src/scripts/createEntryPoints.ts -i \"src/**/*.ts\"",
"format": "prettier --write \"**/*.{ts,tsx,md,json,js,cjs,mjs}\"",
"preinstall": "npx only-allow pnpm",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prepare": "husky",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit --skipLibCheck",
"watch": "tsup --watch"
},
"dependencies": {
"@oclif/core": "^2.0.0",
"@oclif/plugin-help": "^6.2.26",
"@oclif/plugin-plugins": "^5.4.34",
"@smooai/logger": "^3.0.1",
"@standard-schema/spec": "^1.0.0",
"@standard-schema/utils": "^0.3.0",
"find-up": "^7.0.0",
"hono": "^4.7.2",
"http-status-codes": "^2.3.0",
"libphonenumber-js": "^1.12.4",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@smooai/config-eslint": "^1.0.16",
"@smooai/config-typescript": "^1.0.16",
"@types/aws-lambda": "^8.10.119",
"@types/node": "^20.13.0",
"@vercel/style-guide": "^6.0.0",
"eslint": "^9.21.0",
"glob": "^10.3.10",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-packagejson": "^2.5.10",
"prettier-plugin-tailwindcss": "^0.6.11",
"tsup": "^8.4.0",
"vite": "^6.2.4",
"vite-node": "^3.1.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1"
},
"packageManager": "pnpm@10.6.1+sha512.40ee09af407fa9fbb5fbfb8e1cb40fbb74c0af0c3e10e9224d7b53c7658528615b2c92450e74cfad91e3a2dcafe3ce4050d80bda71d757756d2ce2b66213e9a3",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}