@linorabolini/tween.js 25.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@linorabolini/tween.js",
3
+ "description": "Fork from tween.js with custom flavor.",
4
+ "version": "25.0.0",
5
+ "type": "module",
6
+ "main": "dist/tween.cjs",
7
+ "types": "dist/tween.d.ts",
8
+ "module": "dist/tween.esm.js",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/tween.esm.js",
12
+ "require": "./dist/tween.cjs",
13
+ "types": "./dist/tween.d.ts"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "homepage": "https://github.com/linorabolini/tween.js",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/linorabolini/tween.js.git"
28
+ },
29
+ "bugs": {
30
+ "url": "https://github.com/linorabolini/tween.js/issues"
31
+ },
32
+ "license": "MIT",
33
+ "keywords": [
34
+ "tween",
35
+ "interpolation"
36
+ ],
37
+ "dependencies": {},
38
+ "scripts": {
39
+ "dev": "(npm run tsc-watch -- --preserveWatchOutput & p1=$!; npm run rollup-build -- --watch & p2=$!; wait $p1 $p2)",
40
+ "build": "rimraf dist .tmp && node scripts/write-version.js && npm run tsc && npm run rollup-build",
41
+ "rollup-build": "rollup -c ./rollup.config.js",
42
+ "tsc": "tsc",
43
+ "tsc-watch": "tsc --watch",
44
+ "examples": "npx serve .",
45
+ "test": "npm run build && npm run test-lint && npm run test-unit",
46
+ "test-unit": "nodeunit test/unit/nodeunitheadless.cjs",
47
+ "test-lint": "npm run prettier -- --check",
48
+ "lint": "npm run prettier -- --write",
49
+ "prettier": "prettier .",
50
+ "prepare": "npm run build",
51
+ "version": "npm test && git add .",
52
+ "release:patch": "npm version patch --message 'v%s' && npm publish && npm run _release:push-branch",
53
+ "release:minor": "npm version minor --message 'v%s' && npm publish && npm run _release:push-branch",
54
+ "release:major": "npm version major --message 'v%s' && npm publish && npm run _release:push-branch",
55
+ "_release:push-branch": "git push --follow-tags --set-upstream origin `git rev-parse --abbrev-ref HEAD`"
56
+ },
57
+ "author": "tween.js contributors (https://github.com/tweenjs/tween.js/graphs/contributors)",
58
+ "devDependencies": {
59
+ "nodeunit": "^0.11.3",
60
+ "prettier": "^3.0.0",
61
+ "rimraf": "^3.0.0",
62
+ "rollup": "3.20.7",
63
+ "rollup-plugin-dts": "5.3.0",
64
+ "tslib": "^1.10.0",
65
+ "typescript": "5.0.4"
66
+ }
67
+ }