-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@tokens-studio/configs",
"version": "0.2.3",
"description": "The official configs for Tokens Studio, such as Prettier, ESLint, TSConfig etc.",
"license": "MIT",
"author": "Joren Broekema <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tokens-studio/configs.git"
},
"type": "module",
"exports": {
"./eslint": "./eslint.config.cjs",
"./prettier": "./prettier.config.js",
"./typescript": "./tsconfig.json"
},
"files": [
".prettierignore",
"eslint.config.cjs",
"prettier.config.js",
"tsconfig.json"
],
"scripts": {
"format": "prettier . --write && eslint . --fix",
"lint": "run-p lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"lint:types": "tsc --noEmit",
"release": "changeset publish"
},
"dependencies": {
"@eslint/js": "^9.11.1",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0-rc-3edc000d-20240926",
"globals": "^15.9.0",
"typescript-eslint": "^8.8.0"
},
"peerDependencies": {
"eslint": ">= 9",
"prettier": ">= 3",
"typescript": ">= 5"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"npm-run-all": "^4.1.5"
},
"keywords": [
"prettier",
"eslint",
"typescript",
"tsconfig",
"studio",
"tokens",
"config"
],
"publishConfig": {
"access": "public"
}
}