-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "tempus",
"version": "1.0.0-dev.10",
"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"
},
"./dist/*": "./dist/*"
},
"scripts": {
"build": "pnpm build:core && pnpm build:all",
"build:core": "tsup --config tsup.core.ts",
"build:all": "tsup",
"dev": "pnpm run -w --parallel /^dev:.*/",
"dev:build": "tsup --watch",
"dev:playground": "pnpm --filter playground dev",
"readme": "node ./scripts/update-readme.js",
"version:dev": "npm version prerelease --preid dev --force --no-git-tag-version",
"version:patch": "npm version patch --force --no-git-tag-version",
"version:minor": "npm version minor --force --no-git-tag-version",
"version:major": "npm version major --force --no-git-tag-version",
"postversion": "pnpm build && pnpm readme",
"publish:main": "npm publish",
"publish:dev": "npm 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"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"tsup": "^8.2.4",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}