-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.7 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
{
"name": "tailwind-plugin-typed",
"description": "A plugin for Tailwind CSS to generate text typing animations.",
"version": "0.8.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/MoritzBru/tailwind-plugin-typed.git"
},
"author": {
"name": "Moritz Brunnengräber",
"email": "mail@moritz-brunnengraeber.de"
},
"license": "MIT",
"keywords": [
"tailwind",
"tailwindcss",
"plugin",
"css",
"animation",
"typing",
"typewriter"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"dev": "vite build --watch & vite serve .",
"build": "vite build",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"changelog": "changelog --format markdownlint --release $(npm pkg get version | xargs) --create",
"version": "npm run changelog && git add CHANGELOG.md"
},
"peerDependencies": {
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/node": "^22.10.5",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"keep-a-changelog": "^2.5.3",
"npm-run-all2": "^7.0.2",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0"
}
}