-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "vite-vanilla-library",
"version": "0.0.0",
"type": "module",
"exports": {
".": {
"import": "./dist/vite-vanilla-library.js",
"require": "./dist/vite-vanilla-library.cjs"
}
},
"main": "./dist/vite-vanilla-library.cjs",
"module": "./dist/vite-vanilla-library.js",
"types": "./dist/vite-vanilla-library.d.ts",
"files": ["dist"],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release": "pnpm test && pnpm build && changelogen --release --push && pnpm publish",
"lint": "eslint . --fix",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^20.17.3",
"@vitest/coverage-v8": "^1.6.0",
"camelcase": "^8.0.0",
"changelogen": "^0.5.7",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.ts": "pnpm run lint"
}
}