-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
62
{
"name": "@dillage/template-typescript-app",
"version": "0.0.0",
"author": "Doray <open@doray.dev>",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dorayx/template-typescript-app.git"
},
"files": [
"dist"
],
"main": "./dist/lib.umd.cjs",
"module": "./dist/lib.js",
"exports": {
".": {
"import": "./dist/lib.js",
"require": "./dist/lib.umd.cjs"
}
},
"//1": "Due to yarn2+, we have to use 'postinstall' script to install husky",
"scripts": {
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest run",
"test:dev": "vitest dev",
"coverage": "vitest run --coverage",
"postinstall": "is-ci || husky install",
"plop": "plop",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ts-export-naming-convention": "^1.0.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"plop": "^3.1.2",
"prettier": "3.0.2",
"semantic-release": "^21.1.1",
"semantic-release-yarn": "^2.0.1",
"typescript": "~5.1.0",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.3",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.3"
},
"packageManager": "yarn@3.6.3",
"engines": {
"node": ">=16"
},
"engineStrict": true
}