-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 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
{
"name": "vintasend",
"version": "0.8.1",
"main": "dist/index.js",
"files": [
"dist"
],
"author": "Hugo Bessa",
"license": "MIT",
"scripts": {
"lint": "biome check .",
"format": "biome format .",
"check": "biome check --write .",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:implementations:local": "node scripts/test-implementations-local.js",
"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"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/jest": "^30.0.0",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.0.8",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"dependencies": {
"mime-types": "^3.0.2"
}
}