-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
54
55
56
57
58
59
60
61
{
"name": "@hugocxl/typescript-library-starter",
"description": "A template for crafting Typescript libraries",
"productName": "@hugocxl/typescript-library-starter",
"version": "0.0.0",
"license": "MIT",
"private": false,
"author": "hugocxl (http://github.com/hugocxl)",
"homepage": "https://github.com/hugocxl/typescript-library-starter/",
"repository": {
"type": "git",
"url": "https://github.com/hugocxl/typescript-library-starter"
},
"bugs": {
"url": "https://github.com/hugocxl/typescript-library-starter/issues"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"packageManager": "^[email protected]",
"scripts": {
"dev": "tsup --format=esm,cjs --no-dts --watch",
"build": "tsup",
"test": "vitest run",
"test:dev": "vitest dev -u",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist && rm -rf node_modules",
"fix": "pnpm lint:fix . && pnpm format:fix .",
"lint": "eslint --cache",
"lint:check": "pnpm lint",
"lint:fix": "pnpm lint --fix",
"format": "prettier --cache",
"format:check": "pnpm format --check",
"format:fix": "pnpm format --write",
"types": "tsc",
"types:check": "pnpm types --noEmit",
"prepare": "husky install",
"release": "changeset publish",
"release-dev": "changeset version --snapshot dev && changeset publish --tag dev",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@changesets/changelog-github": "^0",
"@changesets/cli": "^2",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"@vitest/coverage-v8": "^1.0.4",
"eslint": "^8",
"husky": "^8",
"lint-staged": "^15",
"prettier": "^3",
"stylelint": "^16",
"tsup": "^8",
"typescript": "^5",
"vitest": "^1"
}
}