-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "correttore",
"version": "0.1.0",
"description": "",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"prettier:write": "prettier --write .",
"test": "vitest run",
"check:lint": "eslint .",
"check:format": "prettier --check .",
"check:types": "tsc --noEmit --pretty",
"check:all": "bun check:lint && bun check:format && bun check:types && bun run test"
},
"keywords": [],
"author": "Mieszko Sabo",
"sideEffects": false,
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@swc-node/register": "^1.6.6",
"@swc/core": "^1.3.76",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"bun-types": "^1.1.3",
"eslint": "8.57.0",
"globals": "^15.0.0",
"hotscript": "^1.0.13",
"prettier": "^3.2.5",
"tsup": "^7.2.0",
"typescript": "5.3.3",
"typescript-eslint": "^7.6.0",
"vitest": "^1.5.0"
}
}