-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "ts-package",
"license": "MIT",
"version": "1.0.0",
"author": {
"name": "Diogo Cardoso",
"email": "[email protected]"
},
"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",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"release": "pnpm run build && changeset publish"
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/ui": "^0.27.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.27.1",
"vitest-github-actions-reporter": "^0.9.0"
}
}