@turbox3d/math
Version:
Large-scale graphics application math library
56 lines • 1.91 kB
JSON
{
"name": "@turbox3d/math",
"version": "1.1.21",
"description": "Large-scale graphics application math library",
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"front-end",
"turbox3d",
"turbox",
"alibaba",
"taobao",
"math"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "feifan <darknight3@vip.qq.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@types/node": "~20.10.5",
"@types/react": "~18.2.45",
"react": "~18.2.0",
"typescript": "~5.3.3"
},
"files": [
"dist/",
"src/",
"lib/",
"es/",
"typings"
],
"repository": {
"type": "git",
"url": "git+https://github.com/turbox3d/turbox.git"
},
"scripts": {
"test": "npx jest --forceExit --coverage --verbose --passWithNoTests",
"test:watch": "npm run test -- --watchAll",
"build:dts": "cross-env GEN_ENV=dts npx ../../gen.js",
"build:ts": "rm -rf ts && tsc && npm run build:dts && copyfiles -u 1 src/**/*.less ./ts",
"build:es": "rm -rf es && npm run build:ts && npx babel ts --out-dir ./es && copyfiles -u 1 src/**/*.less ./es",
"build:lib": "rm -rf lib && npm run build:ts && cross-env BABEL_ENV=commonjs npx babel ts --out-dir lib && copyfiles -u 1 src/**/*.less ./lib",
"build:watch": "tsc -w & npx babel ts -w --out-dir es & copyfiles -u 1 src/**/*.less ./es",
"build:umd": "npx webpack --node-env=development --mode=development",
"build:umd:min": "npx webpack --node-env=production --mode=production",
"build:all": "npm run build:es && npm run build:lib && npm run build:umd && npm run build:umd:min"
}
}