-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "@kinde/infrastructure",
"version": "0.9.0",
"private": false,
"type": "module",
"module": "dist/infrastructure.js",
"main": "dist/infrastructure.cjs",
"types": "dist/main.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepublishOnly": "npm run build",
"preview": "vite preview",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write .",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@eslint/js": "^9.15.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.15.0",
"globals": "^16.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.11",
"vitest": "^3.0.0",
"@types/node": "^22.9.0",
"prettier": "^3.3.3",
"vite-plugin-dts": "^4.3.0"
},
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
}