-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "ss-lambda",
"author": "Bryce Shelley",
"version": "1.3.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "prettier . --write",
"test": "vitest",
"test:ci": "vitest run --coverage.enabled --coverage.reporter='text-summary'",
"release": "pnpm dlx semantic-release"
},
"repository": {
"url": "git+https://github.com/thelinguist/ss-lambda.git"
},
"keywords": [
"lambda",
"typescript",
"aws",
"api"
],
"type": "module",
"main": "./dist/ss-lambda.umd.cjs",
"module": "./dist/ss-lambda.js",
"exports": {
".": {
"import": "./dist/ss-lambda.js",
"require": "./dist/ss-lambda.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"./dist/**"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^18.2.2",
"@types/aws-lambda": "^8.10.120",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitest/coverage-istanbul": "^2.0.4",
"@vitest/coverage-v8": "^2.0.4",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "3.0.3",
"typescript": "^5.2.2",
"vite": "^5.3.5",
"vite-plugin-dts": "4.0.0-beta.1",
"vitest": "^2.0.4"
}
}