-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 KB
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": "typescript-library-template",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"format": "prettier . --write",
"lint": "eslint . --fix",
"format+lint": "npm run format && npm run lint",
"cleanOutDir": "rimraf dist",
"build": "npm run cleanOutDir && rollup --config rollup.config.ts --configPlugin typescript",
"build+format+lint": "npm run format+lint && npm run build",
"knip": "knip",
"postinstall": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@commitlint/format": "^20.4.3",
"@commitlint/types": "^20.4.3",
"@eslint/js": "^9.39.4",
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.3.5",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"knip": "^5.86.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-dts-minify": "^1.0.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}