@pbkware/dot-net-date-number-formatting 0.2.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.
@@ -0,0 +1,11 @@
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.58.2"
9
+ }
10
+ ]
11
+ }
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@pbkware/dot-net-date-number-formatting",
3
+ "description": "DotNet date and number formatting library",
4
+ "version": "0.2.0",
5
+ "type": "module",
6
+ "sideEffects": false,
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/types/public-api.d.ts",
10
+ "import": "./dist/code/index.js"
11
+ }
12
+ },
13
+ "readmeFilename": "README.md",
14
+ "license": "MIT",
15
+ "homepage": "https://pbkware.github.io/dot-net-date-number-formatting/",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git://github.com/pbkware/dot-net-date-number-formatting.git"
19
+ },
20
+ "contributors": [
21
+ "Paul Klink (https://paul.klink.au)"
22
+ ],
23
+ "keywords": [
24
+ "dotnet",
25
+ "date",
26
+ "number",
27
+ "formatting",
28
+ "parsing",
29
+ "locales"
30
+ ],
31
+ "files": [
32
+ "dist/**/*",
33
+ "src/**/*.ts",
34
+ "src/**/*.json",
35
+ "src/**/*.css"
36
+ ],
37
+ "scripts": {
38
+ "test": "vitest run",
39
+ "test:ci": "vitest run --reporter=verbose",
40
+ "test:watch": "vitest",
41
+ "clean": "npx del-cli ./dist/* && npx del-cli ./lib/*",
42
+ "build": "tsc --build ./tsconfig.json",
43
+ "rollup": "npx api-extractor run --local --verbose",
44
+ "api": "npm run build && npm run rollup",
45
+ "dist": "npm run clean && npm run api",
46
+ "docs:build": "typedoc",
47
+ "docs:watch": "typedoc --watch",
48
+ "docs:serve": "lws --stack lws-static -d docs",
49
+ "publish": "npm publish --access=public"
50
+ },
51
+ "devDependencies": {
52
+ "@microsoft/api-extractor": "^7.58.2",
53
+ "del-cli": "^7.0.0",
54
+ "lws": "^4.2.0",
55
+ "lws-static": "^3.1.1",
56
+ "typedoc": "^0.28.19",
57
+ "typescript": "^6.0.2",
58
+ "vitest": "^4.1.4"
59
+ },
60
+ "dependencies": {
61
+ "@pbkware/js-utils": "^0.9.1"
62
+ }
63
+ }