-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 842 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "tween-axis",
"version": "2.2.0",
"license": "MIT",
"author": "Nathan Braun <n8tz.js@gmail.com>",
"description": "Fast, additive & delta based tween composition engine",
"repository": "https://github.com/react-voodoo/tween-axis",
"main": "dist/index.js",
"scripts": {
"build:wasm": "asc src/assembly/TweenAxisCore.ts --outFile dist/TweenAxisCore.wasm --textFile dist/TweenAxisCore.wat --optimize --noAssert --runtime stub --enable simd && node scripts/embed-wasm.js",
"build:js": "babel src -d dist --ignore src/assembly",
"build": "npm run build:wasm && npm run build:js",
"bench": "node bench/perf.js",
"test": "node bench/test.js"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"assemblyscript": "^0.28.9"
}
}