-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.63 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
{
"name": "onno",
"license": "MIT",
"version": "2.2.0",
"homepage": "https://onnojs.com",
"repository": "https://github.com/wagerfield/onno.git",
"bugs": "https://github.com/wagerfield/onno/issues",
"author": {
"name": "Matthew Wagerfield",
"email": "matthew@wagerfield.com",
"url": "https://matthew.wagerfield.com"
},
"keywords": [
"onno",
"clsx",
"classes",
"classnames",
"variants",
"tailwind",
"tailwindcss"
],
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/types.d.ts"
],
"exports": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"pkg": "pkgroll",
"dev": "vite dev",
"build": "vite build",
"start": "vite preview",
"sync": "svelte-kit sync",
"clean": "rm -rf coverage dist",
"test": "vitest run --coverage",
"lint": "prettier --write --ignore-path .prettierignore .",
"package": "svelte-package --input src/onno",
"prepare": "husky install && pnpm sync",
"changelog": "pnpm auto-changelog",
"release": "release-it"
},
"prettier": {
"semi": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"auto-changelog": {
"package": true,
"output": "changelog.md",
"startingVersion": "0.5"
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"vitest related --run"
],
"**/*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"clsx": "2.0.0"
},
"devDependencies": {
"@codemirror/autocomplete": "6.9.0",
"@codemirror/commands": "6.2.4",
"@codemirror/lang-javascript": "6.1.9",
"@codemirror/language": "6.9.0",
"@codemirror/lint": "6.4.0",
"@codemirror/search": "6.5.1",
"@codemirror/state": "6.2.1",
"@codemirror/theme-one-dark": "6.1.2",
"@codemirror/view": "6.16.0",
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@fontsource-variable/inter": "5.0.8",
"@fontsource-variable/jetbrains-mono": "5.0.9",
"@lezer/highlight": "1.1.6",
"@sveltejs/adapter-vercel": "3.0.3",
"@sveltejs/kit": "1.22.6",
"@sveltejs/package": "2.2.1",
"@vitest/coverage-v8": "0.34.1",
"auto-changelog": "2.4.0",
"autoprefixer": "10.4.15",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"pkgroll": "1.11.0",
"postcss": "8.4.28",
"prettier": "3.0.1",
"release-it": "16.1.4",
"svelte": "4.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"vite": "4.4.9",
"vitest": "0.34.1"
}
}