Files
lan-manager/web/node_modules/@antv/g-svg/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

66 lines
1.8 KiB
JSON

{
"name": "@antv/g-svg",
"version": "0.5.7",
"description": "A canvas library which providing 2d",
"main": "lib/index.js",
"module": "esm/index.js",
"unpkg": "dist/g.min.js",
"types": "lib/index.d.ts",
"files": [
"src",
"package.json",
"esm",
"lib",
"dist",
"LICENSE",
"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",
"build:umd": "webpack --config webpack.config.js --mode production",
"clean": "rm -rf esm lib dist",
"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/g.git"
},
"keywords": [
"util",
"antv",
"g"
],
"publishConfig": {
"access": "public"
},
"author": "https://github.com/orgs/antvis/people",
"license": "ISC",
"bugs": {
"url": "https://github.com/antvis/g/issues"
},
"devDependencies": {
"@antv/torch": "^1.0.0",
"less": "^4.1.1",
"npm-run-all": "^4.1.5",
"webpack": "^4.39.3",
"webpack-cli": "^4.5.0"
},
"homepage": "https://github.com/antvis/g#readme",
"dependencies": {
"@antv/g-base": "^0.5.12",
"@antv/g-math": "^0.1.9",
"@antv/util": "~2.0.0",
"detect-browser": "^5.0.0",
"tslib": "^2.0.3"
},
"gitHead": "2d3bf5b25fb8412c05d53f04fc0cd8414d1fd7cc"
}