-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1004 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
42
{
"name": "@linzjs/style",
"version": "5.4.0",
"license": "MIT",
"repository": "github:linz/style-js",
"bin": {
"linz-style-install": "linz-style-install.mjs"
},
"type": "module",
"files": [
"build",
"config",
"linz-style-install.mjs",
".eslintrc.cjs",
".prettierrc.cjs",
"tsconfig.json",
"tsconfig.base.json"
],
"scripts": {
"build": "tsc",
"lint": "npx eslint . --ignore-path .gitignore"
},
"devDependencies": {
"@types/node": "^20.4.9",
"@types/react": "^18.2.20"
},
"dependencies": {
"@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-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2"
},
"publishConfig": {
"access": "public"
}
}