-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.64 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
63
64
65
66
67
68
69
70
71
{
"name": "library-name",
"version": "1.0.0",
"description": "JavaScript Library Template built using Vite",
"license": "MIT",
"type": "module",
"main": "dist/library-name.cjs",
"module": "dist/library-name.js",
"types": "dist/library-name.d.ts",
"exports": {
".": {
"import": "./dist/library-name.js",
"require": "./dist/library-name.cjs"
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE.md"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --fix",
"test": "vitest --run",
"test:coverage": "vitest --coverage --run",
"prepare": "husky"
},
"homepage": "https://github.com/vendor/library-name",
"repository": {
"type": "git",
"url": "https://github.com/vendor/library-name"
},
"keywords": [
"javascript",
"library",
"template",
"vite",
"build"
],
"author": {
"name": "My Name",
"email": "my@email.com",
"url": "https://my.page.com/"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.5.0",
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^1.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.6.0",
"husky": "^9.0.11",
"prettier": "3.3.2",
"semantic-release": "^24.0.0",
"typescript": "^5.2.2",
"typescript-eslint": "^7.13.0",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"prettier": {
"trailingComma": "es5",
"semi": true,
"singleQuote": true
}
}