Files
lan-manager/web/node_modules/@antv/matrix-util/package.json
openclaw 0a5f6a8047 Initial commit: Lan-manager project code
- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs

Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
2026-04-20 00:52:58 +08:00

55 lines
1.6 KiB
JSON

{
"name": "@antv/matrix-util",
"version": "3.1.0-beta.3",
"description": "A common util collection for antv projects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "esm/index.js",
"files": [
"src",
"package.json",
"esm",
"lib",
"README.md"
],
"scripts": {
"build": "npm run clean && run-p build:*",
"build:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
"build:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
"clean": "rm -rf lib && rm -rf esm",
"coverage": "npm run coverage-generator && npm run coverage-viewer",
"coverage-generator": "torch --coverage --compile --source-pattern src/*.js,src/**/*.js --opts __tests__/mocha.opts",
"coverage-viewer": "torch-coverage",
"test": "torch --renderer --compile --opts __tests__/mocha.opts",
"test-live": "torch --compile --interactive --opts __tests__/mocha.opts",
"tsc": "tsc --noEmit",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antvis/util.git"
},
"keywords": [
"util",
"antv",
"g"
],
"author": "https://github.com/orgs/antvis/people",
"license": "ISC",
"bugs": {
"url": "https://github.com/antvis/util/issues"
},
"devDependencies": {
"@antv/torch": "^1.0.0",
"chai": "^4.2.0",
"less": "^3.9.0",
"npm-run-all": "^4.1.5"
},
"homepage": "https://github.com/antvis/util#readme",
"dependencies": {
"@antv/util": "^2.0.9",
"gl-matrix": "^3.4.3",
"tslib": "^2.0.3"
}
}