-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "tseuse",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest test",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.json --fix --cache",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --write --cache .",
"prepare": "husky install",
"coverage": "vitest run --coverage",
"docs:dev": "vitepress dev packages",
"docs:build": "vitepress build packages",
"release": "changeset publish"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,json}": [
"pnpm run lint",
"pnpm run format"
]
},
"publicConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/node": "^20.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-c8": "^0.31.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitepress": "1.0.0-alpha.75",
"vitest": "^0.31.0"
}
}