release-note 0.0.0

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
+ # npm package
package/dist/index.cjs ADDED
@@ -0,0 +1,14 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ //#region src/index.ts
6
+ var src_default = "Hello World";
7
+ const foo = "bar";
8
+ const baz = 42;
9
+ //#endregion
10
+ exports.baz = baz;
11
+ exports.default = src_default;
12
+ exports.foo = foo;
13
+
14
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.cjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["export default 'Hello World'\nexport const foo = 'bar'\nexport const baz = 42\n"],"mappings":";;;;;AAAA,IAAA,cAAe;AACf,MAAa,MAAM;AACnB,MAAa,MAAM"}
@@ -0,0 +1,7 @@
1
+ //#region src/index.d.ts
2
+ declare const _default: "Hello World";
3
+ declare const foo = "bar";
4
+ declare const baz = 42;
5
+ //#endregion
6
+ export { baz, _default as default, foo };
7
+ //# sourceMappingURL=index.d.cts.map
@@ -0,0 +1,7 @@
1
+ //#region src/index.d.ts
2
+ declare const _default: "Hello World";
3
+ declare const foo = "bar";
4
+ declare const baz = 42;
5
+ //#endregion
6
+ export { baz, _default as default, foo };
7
+ //# sourceMappingURL=index.d.mts.map
package/dist/index.mjs ADDED
@@ -0,0 +1,8 @@
1
+ //#region src/index.ts
2
+ var src_default = "Hello World";
3
+ const foo = "bar";
4
+ const baz = 42;
5
+ //#endregion
6
+ export { baz, src_default as default, foo };
7
+
8
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["export default 'Hello World'\nexport const foo = 'bar'\nexport const baz = 42\n"],"mappings":";AAAA,IAAA,cAAe;AACf,MAAa,MAAM;AACnB,MAAa,MAAM"}
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "release-note",
3
+ "version": "0.0.0",
4
+ "sideEffects": false,
5
+ "scripts": {
6
+ "lint": "eslint .",
7
+ "lint:fix": "eslint . --fix",
8
+ "typecheck": "tsc --noEmit",
9
+ "typecheck:watch": "tsc --noEmit --watch",
10
+ "exports": "tsx ./write-exports.ts",
11
+ "build": "tsdown --config ./tsdown.config.ts",
12
+ "dev": "concurrently --names \"R,T\" --prefix-colors \"blue.dim,magenta.dim\" \"tsdown --config ./tsdown.config.ts --watch\" \"tsc --noEmit --watch\"",
13
+ "start": "tsx --watch ./src/index.ts"
14
+ },
15
+ "main": "./dist/index.cjs",
16
+ "module": "./dist/index.mjs",
17
+ "exports": {
18
+ ".": {
19
+ "import": "./dist/index.mjs",
20
+ "require": "./dist/index.cjs"
21
+ }
22
+ },
23
+ "typesVersions": {
24
+ "*": {
25
+ ".": [
26
+ "./dist/index.d.mts",
27
+ "./dist/index.d.cts"
28
+ ]
29
+ }
30
+ },
31
+ "devDependencies": {
32
+ "@eslint/compat": "^1.4.1",
33
+ "@eslint/eslintrc": "^3.3.5",
34
+ "@eslint/js": "^9.39.4",
35
+ "@types/node": "^25.9.1",
36
+ "@typescript-eslint/eslint-plugin": "^8.60.1",
37
+ "@typescript-eslint/parser": "^8.60.1",
38
+ "concurrently": "^10.0.3",
39
+ "eslint": "^9.39.4",
40
+ "eslint-config-prettier": "^10.1.8",
41
+ "eslint-plugin-check-file": "^3.3.1",
42
+ "eslint-plugin-import": "^2.32.0",
43
+ "eslint-plugin-prettier": "^5.5.6",
44
+ "husky": "^9.1.7",
45
+ "prettier": "^3.8.3",
46
+ "prettier-plugin-organize-imports": "^4.3.0",
47
+ "rolldown": "^1.0.3",
48
+ "tsdown": "^0.22.1",
49
+ "tslib": "^2.8.1",
50
+ "tsx": "^4.22.4",
51
+ "typescript": "^5.9.3",
52
+ "typescript-eslint": "^8.60.1"
53
+ }
54
+ }