-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 KB
/
package.json
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
{
"name": "@kilbergr/metadata",
"description": "Metadata declaration helpers",
"version": "0.1.0-Alpha.8",
"author": {
"name": "Kilbergr",
"email": "ales.albert@kilbergr.eu"
},
"keywords": [
"metadata",
"typescript"
],
"license": "MIT",
"url": "https://github.com/ales-albert-kilbergr/metadata/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ales-albert-kilbergr/metadata.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest",
"format": "prettier --write .",
"lint": "eslint \"src/**/*.ts\" --fix",
"build:types": "tsc -p tsconfig.types.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "rm -rf ./dist && npm run build:types && npm run build:cjs && npm run build:esm",
"prepublish": "npm run test && npm run build",
"publish": "npm publish --access public"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"type-fest": "^4.20.1",
"typescript": "^5.5.2"
}
}