-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.9 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.9 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
{
"name": "vintasend",
"version": "0.14.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"author": "Hugo Bessa",
"license": "MIT",
"type": "module",
"scripts": {
"lint": "biome check .",
"format": "biome check --write .",
"check": "biome check --write .",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"implementation:generate": "node scripts/generate-implementation.js",
"lint:implementations": "node scripts/run-implementations-script.js lint",
"format:implementations": "node scripts/run-implementations-script.js format",
"test:implementations:local": "node scripts/test-implementations-local.js",
"build:implementations:local": "node scripts/test-implementations-local.js --command=build",
"release:prepare": "npm run format && npm test && npm run format:implementations && npm run test:implementations:local && npm run build:implementations:local",
"release:bump": "node scripts/release-bump.js",
"release:bump:patch": "node scripts/release-bump.js --bump=patch",
"release:bump:minor": "node scripts/release-bump.js --bump=minor",
"release:bump:alpha": "node scripts/release-bump.js --bump=alpha",
"release:bump:promote": "node scripts/release-bump.js --bump=promote",
"release:publish": "node scripts/release-publish.js",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.0.8",
"@vitest/coverage-v8": "4.0.18",
"husky": "^9.1.7",
"tsc-esm-fix": "^3.1.2",
"typescript": "^5.9.3",
"vitest": "4.0.18"
},
"dependencies": {
"@prisma/adapter-pg": "^7.4.2",
"mime-types": "^3.0.2"
}
}