-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 983 Bytes
/
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
{
"name": "@eik/typescript-config",
"version": "1.0.0",
"description": "Shared typescript config for Eik modules",
"type": "module",
"files": [
"module.json",
"test.json"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/eik-lib/typescript-config.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/eik-lib/typescript-config/issues"
},
"homepage": "https://github.com/eik-lib/typescript-config#readme",
"scripts": {
"clean": "rimraf node_modules",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"peerDependencies": {
"typescript": ">= 5"
},
"devDependencies": {
"@eik/eslint-config": "1.0.7",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"eslint": "9.16.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"semantic-release": "24.2.0"
}
}