-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.93 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.93 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@hypernym/frame",
"version": "0.30.0",
"author": "Hypernym Studio",
"description": "Universal Frame Manager.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hypernym-studio/frame.git"
},
"homepage": "https://github.com/hypernym-studio/frame",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"hyper",
"hypernym",
"frame",
"manager",
"animation",
"request-animation-frame",
"javascript",
"typescript",
"microtask",
"schedule",
"ticker",
"batch",
"phase",
"queue",
"loop",
"raf"
],
"scripts": {
"dev": "vite playground",
"dev:host": "vite playground --host",
"build": "hyperbundler",
"lint": "oxlint",
"format": "oxfmt",
"test": "vitest -c test/vitest.config.ts",
"generate:changelog": "hyperchangelog",
"show-size:min": "wc -c < dist/index.min.js | awk '{printf \"min dist/index.min.js %.2f KB\\n\", $1/1024}'",
"show-size:gzip": "gzip -c dist/index.min.js | wc -c | awk '{printf \"gzip dist/index.min.js %.2f KB\\n\", $1/1024}'",
"show-size": "pnpm --silent show-size:min && pnpm --silent show-size:gzip",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"@types/node": ">=20.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@hypernym/bundler": "^0.32.2",
"@hypernym/changelog": "^0.3.0",
"@hypernym/oxlint-config": "^0.1.0",
"@hypernym/tsconfig": "^2.7.1",
"@types/node": "^25.6.0",
"jsdom": "^29.0.2",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"typescript": "^5.9.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}