-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "tempus",
"version": "1.0.0-dev.18",
"description": "one rAF to rule them all",
"type": "module",
"sideEffects": false,
"unpkg": "./dist/tempus.mjs",
"main": "./dist/tempus.mjs",
"module": "./dist/tempus.mjs",
"types": "./dist/tempus.d.ts",
"exports": {
".": {
"types": "./dist/tempus.d.ts",
"default": "./dist/tempus.mjs"
},
"./react": {
"types": "./dist/tempus-react.d.ts",
"default": "./dist/tempus-react.mjs"
},
"./profiler": {
"types": "./dist/tempus-profiler.d.ts",
"default": "./dist/tempus-profiler.mjs"
},
"./dist/*": "./dist/*"
},
"scripts": {
"build": "bun run build:core && bun run build:all",
"build:core": "tsup --config tsup.core.ts",
"build:all": "tsup",
"lint": "biome check packages",
"format": "biome format --write .",
"check": "biome check .",
"dev": "bun --filter playground dev",
"dev:build": "tsup --watch",
"readme": "node ./scripts/update-readme.js",
"version:dev": "bun pm version prerelease --preid dev --force --no-git-tag-version",
"version:patch": "bun pm version patch --force --no-git-tag-version",
"version:minor": "bun pm version minor --force --no-git-tag-version",
"version:major": "bun pm version major --force --no-git-tag-version",
"postversion": "bun run build && bun run readme",
"publish:main": "bun publish",
"publish:dev": "bun publish --tag dev"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/darkroomengineering/tempus.git"
},
"keywords": [
"raf",
"ticker",
"framerate",
"fps"
],
"author": "darkroom.engineering",
"license": "MIT",
"bugs": {
"url": "https://github.com/darkroomengineering/tempus/issues"
},
"homepage": "https://github.com/darkroomengineering/tempus",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/darkroomengineering"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"tsup": "^8.5.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"workspaces": [
"packages/*",
"playground"
],
"overrides": {
"yaml": ">=2.8.3",
"esbuild": ">=0.28.1"
}
}