-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@draggable/library-template",
"version": "0.0.0",
"description": "",
"main": "dist/library-template.es.min.js",
"type": "module",
"private": true,
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node --experimental-strip-types --no-warnings --test src/**/*.test.{ts,js}",
"test:watch": "npm run test -- --watch",
"lint": "biome lint src/js/demo.ts",
"format": "biome check --apply index.ts",
"start": "npm run dev",
"semantic-release": "semantic-release",
"dev": "vite",
"preview": "vite preview",
"build:lib": "vite build --config vite.config.lib.ts",
"watch:lib": "vite build --config vite.config.lib.ts --watch",
"build": "vite build --config vite.config.dev.ts",
"prebuild": "npm run build:lib",
"prepare": "lefthook install",
"postmerge": "lefthook install"
},
"repository": {
"url": "https://github.com/Draggable/library-template",
"type": "git"
},
"keywords": [
"library-template"
],
"author": "Draggable https://draggable.io",
"contributors": [
{
"name": "Kevin Chappell",
"email": "[email protected]",
"url": "https://kevin-chappell.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Draggable/library-template/issues"
},
"homepage": "https://github.com/Draggable/library-template",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"lefthook": "^1.7.22",
"lint-staged": "^15.2.10",
"semantic-release": "^24.1.3",
"vite": "^5.4.9",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"biome lint",
"biome format",
"git add"
]
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
}
}