-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
56
57
58
59
{
"name": "ts-package",
"license": "MIT",
"version": "1.0.0",
"author": {
"name": "Diogo Cardoso",
"email": "hi@diogocardoso.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/nip10/ts-package.git"
},
"bugs": {
"url": "https://github.com/nip10/ts-package/issues"
},
"homepage": "https://github.com/nip10/ts-package#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"format": "prettier . --write",
"test": "vitest run",
"coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"check-exports": "attw --pack .",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@changesets/cli": "^2.29.7",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@total-typescript/ts-reset": "^0.6.1",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@vitest/ui": "^4.0.8",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^4.0.8",
"vitest-github-actions-reporter": "^0.11.1"
}
}