landxml 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ Just a landxml parser for the web.
@@ -0,0 +1,3 @@
1
+ declare const _default: () => void;
2
+
3
+ export { _default as default };
@@ -0,0 +1,3 @@
1
+ declare const _default: () => void;
2
+
3
+ export { _default as default };
package/dist/index.js ADDED
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ default: () => src_default
24
+ });
25
+ module.exports = __toCommonJS(src_exports);
26
+ var src_default = () => {
27
+ console.log("Hello world");
28
+ };
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ // src/index.ts
2
+ var src_default = () => {
3
+ console.log("Hello world");
4
+ };
5
+ export {
6
+ src_default as default
7
+ };
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "landxml",
3
+ "version": "0.0.1",
4
+ "description": "Parse LandXML surfaces on the modern web.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "private": false,
9
+ "scripts": {
10
+ "dev": "vitest",
11
+ "test": "vitest run",
12
+ "build": "tsup src/index.ts --format cjs,esm --dts",
13
+ "lint": "tsc",
14
+ "ci": "npm run lint && npm run test && npm run build",
15
+ "release": "npm run lint && npm run test && npm run build && changeset publish"
16
+ },
17
+ "keywords": [
18
+ "landxml",
19
+ "geojson",
20
+ "gltf"
21
+ ],
22
+ "author": "Matthew Abrman",
23
+ "license": "MIT",
24
+ "devDependencies": {
25
+ "@changesets/cli": "^2.26.2",
26
+ "tsup": "^8.0.0",
27
+ "typescript": "^5.2.2",
28
+ "vitest": "^0.34.6"
29
+ },
30
+ "dependencies": {}
31
+ }