forked from kbysiec/vite-vanilla-ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.81 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
{
"name": "vite-vanilla-ts-lib-starter",
"description": "Typescript library starter",
"version": "0.3.0",
"license": "MIT",
"author": "Aaron Zhou",
"packageManager": "[email protected]",
"main": "./dist/vite-ts-lib-starter.cjs",
"module": "./dist/vite-ts-lib-starter.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/vite-ts-lib-starter.cjs",
"import": "./dist/vite-ts-lib-starter.mjs"
}
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"test": "vitest",
"test:update": "vitest --update",
"test:run": "vitest --run --changed",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit --watch --preserveWatchOutput",
"format": "eslint --fix --cache src/**/*.ts",
"prepare": "husky install",
"uninstall-husky": "npm uninstall husky --no-save && git config --unset core.hooksPath && npx rimraf .husky",
"release": "commit-and-tag-version"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitest/coverage-v8": "^1.3.1",
"commit-and-tag-version": "^12.2.0",
"conventional-changelog-aaron-preset": "^0.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"globals": "^15.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-externalize-deps": "^0.8.0",
"vitest": "^1.3.1"
}
}