-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@native-systems/utility",
"description": "Utility functions and types for native systems projects.",
"author": "AACN Software- und Systementwicklung GmbH",
"homepage": "https://github.com/aacn/utility#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aacn/utility.git"
},
"publishConfig": {
"access": "public"
},
"version": "2.6.1",
"license": "MIT",
"private": false,
"engines": {
"npm": "please-use-yarn",
"yarn": "1.x"
},
"browserslist": ["last 3 versions", "> 1%"],
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": ["dist", "README.md"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
},
"./pattern": {
"types": "./dist/pattern.d.ts",
"import": "./dist/pattern.esm.js",
"require": "./dist/pattern.cjs"
}
},
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -c -w",
"playground": "cd playground && yarn start",
"install:frozen": "yarn install --frozen-lockfile",
"install:all:frozen": "./install.all.sh",
"install:test:frozen": "./install.test.sh",
"dev": "npm-run-all --parallel build-watch playground",
"generate": "plop",
"prepare": "husky",
"pre-format": "lint-staged",
"test": "jest",
"test:types": "tsc --noEmit --target ES2022 --module NodeNext --moduleResolution NodeNext --types node type-tests/package-imports.ts",
"test:watch": "jest --watch"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --config .prettierrc.json --write"
]
},
"keywords": ["typescript", "react", "next", "utility"],
"release": {
"branches": ["main"]
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.0.0",
"@swc/cli": "^0.5.0",
"@swc/core": "^1.3.77",
"@swc/jest": "^0.2.37",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/sanitize-html": "^2.16.0",
"handlebars": "^4.7.8",
"husky": "^9.1.6",
"jest": "^30.2.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "3.0.3",
"rollup": "^4.26.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-flat-dts": "^2.8.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-prettier": "^4.1.1",
"rollup-plugin-swc3": "^0.12.1",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"rollup-plugin-typescript-paths": "^1.5.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.1",
"typescript": "5.6.3"
},
"peerDependencies": {
"handlebars": "^4",
"markdown-it": "^14",
"sanitize-html": "^2.17"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}