-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "easy-prop-animation",
"version": "1.0.5",
"description": "Helpful class for Babylon.js that allows you easy to runs a property animations",
"keywords": [
"babylonjs",
"helper",
"animation",
"property",
"easing"
],
"author": "Oleg Postoev",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Dok11/easy-prop-animation.git"
},
"bugs": {
"url": "https://github.com/Dok11/easy-prop-animation/issues"
},
"homepage": "https://github.com/Dok11/easy-prop-animation#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@babylonjs/core": "^7.1.0",
"@types/node": "^18.14.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@babylonjs/core": "^7.0.0"
},
"scripts": {
"build:cjs": "babel src --out-dir dist/cjs --extensions .ts --source-maps",
"build:esm": "babel src --out-dir dist/esm --extensions .ts --source-maps --env-name esm",
"build:tsc": "npx tsc",
"build": "npm run build:cjs && npm run build:esm && npm run build:tsc",
"prepare": "npm run build"
}
}