-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.86 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.86 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
{
"name": "@standardkit/core",
"version": "0.2.5",
"private": false,
"description": "StandardKit - Core",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier '**/*.{js,md,yml,yaml,json}' --write",
"lint:eslint": "eslint --fix",
"lint:staged": "lint-staged",
"version": "auto-changelog -p -l 99 -b 99 && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"prepare": "husky"
},
"files": ["dist", "README.md", "LICENSE"],
"repository": {
"type": "git",
"url": "git+https://github.com/standardkit/core.git"
},
"keywords": ["standardkit", "typescript", "interfaces", "library", "core", "utility"],
"author": "Coen Mooij",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/standardkit/core/issues"
},
"homepage": "https://github.com/standardkit/core#readme",
"dependencies": {
"typescript": ">5.1.3"
},
"peerDependencies": {
"rxjs": "^6.5.3 || ^7.8.0"
},
"devDependencies": {
"@smarttools/eslint-plugin-rxjs": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"auto-changelog": "^2.5.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript-eslint": "^8.18.1"
}
}