@native-systems/utility 1.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/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "@native-systems/utility",
3
+ "description": "Utility functions and types for native system projects.",
4
+ "author": "AACN Software- und Systementwicklung GmbH",
5
+ "homepage": "https://github.com/aacn/utility#readme",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "ssh://git@github.com:aacn/utility.git"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "version": "1.0.0",
14
+ "license": "MIT",
15
+ "private": false,
16
+ "engines": {
17
+ "npm": "please-use-yarn",
18
+ "yarn": "1.x"
19
+ },
20
+ "browserslist": [
21
+ "last 3 versions",
22
+ "> 1%"
23
+ ],
24
+ "main": "dist/index.cjs.js",
25
+ "module": "dist/index.esm.js",
26
+ "typings": "dist/index.d.ts",
27
+ "files": [
28
+ "dist",
29
+ "README.md"
30
+ ],
31
+ "exports": {
32
+ "import": "./dist/index.esm.js",
33
+ "require": "./dist/index.cjs",
34
+ "types": "./dist/index.d.ts"
35
+ },
36
+ "type": "module",
37
+ "scripts": {
38
+ "build": "rollup -c rollup.config.js",
39
+ "build:watch": "rollup -c -w",
40
+ "playground": "cd playground && yarn start",
41
+ "install:frozen": "yarn install --frozen-lockfile",
42
+ "install:all:frozen": "./install.all.sh",
43
+ "install:test:frozen": "./install.test.sh",
44
+ "dev": "npm-run-all --parallel build-watch playground",
45
+ "generate": "plop",
46
+ "prepare": "husky",
47
+ "pre-format": "lint-staged"
48
+ },
49
+ "lint-staged": {
50
+ "src/**/*.{js,jsx,ts,tsx,json}": [
51
+ "prettier --config .prettierrc.json --write"
52
+ ]
53
+ },
54
+ "keywords": [
55
+ "typescript",
56
+ "react",
57
+ "next",
58
+ "nest",
59
+ "utility"
60
+ ],
61
+ "release": {
62
+ "branches": [
63
+ "main"
64
+ ]
65
+ },
66
+ "dependencies": {},
67
+ "devDependencies": {
68
+ "@nestjs/common": "^10.2.1",
69
+ "@rollup/plugin-commonjs": "^22.0.2",
70
+ "@rollup/plugin-json": "^4.1.0",
71
+ "@rollup/plugin-node-resolve": "^14.0.0",
72
+ "@swc/cli": "^0.5.0",
73
+ "@swc/core": "^1.3.77",
74
+ "@swc/jest": "^0.2.37",
75
+ "@types/node": "^20",
76
+ "husky": "^9.1.6",
77
+ "lint-staged": "^13.0.3",
78
+ "npm-run-all": "^4.1.5",
79
+ "prettier": "3.0.3",
80
+ "rollup": "^4.26.0",
81
+ "rollup-plugin-delete": "^2.1.0",
82
+ "rollup-plugin-flat-dts": "^2.8.0",
83
+ "rollup-plugin-node-polyfills": "^0.2.1",
84
+ "rollup-plugin-prettier": "^4.1.1",
85
+ "rollup-plugin-swc3": "^0.12.1",
86
+ "rollup-plugin-tsconfig-paths": "^1.5.2",
87
+ "rollup-plugin-typescript-paths": "^1.5.0",
88
+ "ts-node": "^10.9.1",
89
+ "typescript": "5.6.3"
90
+ },
91
+ "peerDependencies": {
92
+ "@nestjs/common": "^10.2.1"
93
+ }
94
+ }