-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.75 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
{
"name": "cf-openai",
"version": "0.4.3",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230307.0",
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitest/coverage-c8": "^0.32.0",
"@wecom/crypto": "^1.0.1",
"conventional-changelog-cli": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.17.13",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"openai": "^3.2.1",
"tsx": "^3.12.3",
"typescript": "^5.0.0",
"vitest": "^0.32.0",
"vitest-environment-miniflare": "^2.12.1",
"wrangler": "^3.0.0",
"zod": "^3.21.4"
},
"private": true,
"scripts": {
"local": "wrangler dev --local -c wrangler.dev.toml",
"start": "proxychains wrangler dev -c wrangler.dev.toml",
"build-mini": "esbuild src/index.ts --bundle --format=esm --outfile=dist/index.mini.js --minify",
"build": "esbuild src/index.ts --bundle --format=esm --outfile=dist/index.js --minify --sourcemap=inline",
"deploy": "wrangler publish -c wrangler.prod.toml",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"test": "vitest run",
"coverage": "vitest run --coverage",
"changelog": "conventional-changelog -p angular -t v --commit-path $PWD --pkg package.json -i CHANGELOG.md -s",
"prepare": "husky install"
},
"dependencies": {
"fast-xml-parser": "^4.1.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}