-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.61 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.61 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "charwrapper",
"version": "2.0.0",
"description": "Modern ES6+ text wrapper library for GSAP, Animejs, Web Animation API and others, with TypeScript support",
"type": "module",
"main": "./dist/charwrapper.cjs.js",
"module": "./dist/esm/CharWrapper.js",
"types": "./dist/esm/CharWrapper.d.ts",
"browser": "./dist/charwrapper.min.js",
"exports": {
".": {
"types": "./dist/esm/CharWrapper.d.ts",
"browser": "./dist/charwrapper.min.js",
"import": "./dist/esm/CharWrapper.js",
"require": "./dist/charwrapper.cjs.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"bundle": "npm run build && node build-bundle.js",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run bundle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gsap",
"animejs",
"waapi",
"text",
"animation",
"character",
"wrapper",
"typescript",
"es6",
"split-text",
"text-effects",
"dom",
"accessibility"
],
"author": {
"name": "Robert Wildling",
"email": "webaster@rowild.at"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"esbuild": "^0.25.11",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rowild/charwrapper.git"
},
"bugs": {
"url": "https://github.com/rowild/charwrapper/issues"
},
"homepage": "https://github.com/rowild/charwrapper#readme"
}