-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "animautomata",
"version": "1.0.5",
"description": "a library for creating high quality loading animations using the Canvas API",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "vite",
"test": "jest",
"build": "vite build && vite build --mode examples",
"preview": "vite preview",
"docs": "typedoc src/index.ts --plugin typedoc-material-theme --themeColor '#c70039' --out public/docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/era-epoch/animautomata.git"
},
"files": [
"LICENSE",
"src/[!_]*",
"src/[!_]**/[!_]*",
"README.md",
"dist/min.js"
],
"keywords": [
"animation",
"frontend",
"ui",
"canvas",
"animautomaton",
"loading animation",
"loader"
],
"author": "eraepoch",
"license": "MIT",
"bugs": {
"url": "https://github.com/era-epoch/animautomata/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/era-epoch/animautomata#readme",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.7",
"typedoc-material-theme": "^1.1.0",
"typescript": "^5.6.2",
"vite": "^5.4.7"
}
}