-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.33 KB
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
{
"name": "@mattbal/split-text",
"version": "1.4.0",
"description": "A JavaScript library that splits text into characters, words, or lines for animation",
"keywords": [
"javascript",
"js",
"split",
"text",
"html"
],
"license": "MIT",
"author": "Matt Balint",
"homepage": "https://github.com/mattbal/split-text",
"repository": {
"type": "git",
"url": "https://github.com/mattbal/split-text.git"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"scripts": {
"clean": "shx rm -rf coverage dist",
"lint": "eslint src",
"build": "tsc",
"watch": "tsc --watch",
"test": "npm run lint && npx playwright test --ui",
"release": "npm run clean && npm run build",
"prepare": "husky"
},
"engines": {
"node": ">=18.18.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.54.1",
"@types/node": "^24.1.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsdoc": "^50.6.14",
"eslint-plugin-n": "^17.21.3",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"zod": "^4.0.13"
}
}