用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.3 KiB

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. {
  2. "name": "@ungap/structured-clone",
  3. "version": "1.3.0",
  4. "description": "A structuredClone polyfill",
  5. "main": "./cjs/index.js",
  6. "scripts": {
  7. "build": "npm run cjs && npm run rollup:json && npm run test",
  8. "cjs": "ascjs esm cjs",
  9. "coverage": "c8 report --reporter=text-lcov > ./coverage/lcov.info",
  10. "rollup:json": "rollup --config rollup/json.config.js",
  11. "test": "c8 node test/index.js"
  12. },
  13. "keywords": [
  14. "recursion",
  15. "structured",
  16. "clone",
  17. "algorithm"
  18. ],
  19. "author": "Andrea Giammarchi",
  20. "license": "ISC",
  21. "devDependencies": {
  22. "@rollup/plugin-node-resolve": "^16.0.0",
  23. "@rollup/plugin-terser": "^0.4.4",
  24. "ascjs": "^6.0.3",
  25. "c8": "^10.1.3",
  26. "coveralls": "^3.1.1",
  27. "rollup": "^4.31.0"
  28. },
  29. "module": "./esm/index.js",
  30. "type": "module",
  31. "sideEffects": false,
  32. "exports": {
  33. ".": {
  34. "import": "./esm/index.js",
  35. "default": "./cjs/index.js"
  36. },
  37. "./json": {
  38. "import": "./esm/json.js",
  39. "default": "./cjs/json.js"
  40. },
  41. "./package.json": "./package.json"
  42. },
  43. "directories": {
  44. "test": "test"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "git+https://github.com/ungap/structured-clone.git"
  49. },
  50. "bugs": {
  51. "url": "https://github.com/ungap/structured-clone/issues"
  52. },
  53. "homepage": "https://github.com/ungap/structured-clone#readme"
  54. }