-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.01 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.01 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@taskany/colors",
"version": "1.14.0",
"description": "Taskany themes",
"main": "themes/index.js",
"types": "themes/index.d.ts",
"module": "themes/esm/index.js",
"exports": {
".": {
"import": "./themes/esm/index.js",
"require": "./themes/index.js"
},
"./themes/dark": {
"import": "./themes/esm/dark.js",
"require": "./themes/dark.js"
},
"./themes/light": {
"import": "./themes/esm/light.js",
"require": "./themes/light.js"
},
"./harmony/dark.css": "./harmony/dark.css",
"./harmony/light.css": "./harmony/light.css"
},
"typesVersions": {
"*": {
"themes/dark": [
"./themes/dark.d.ts"
],
"themes/light": [
"./themes/light.d.ts"
]
}
},
"files": [
"themes",
"harmony"
],
"scripts": {
"generate": "node ./generate.js",
"build": "npm run clean && npm run generate && npm run compile && cp generated/*.css themes/",
"compile": "npm run compile:cjs && npm run compile:esm",
"compile:cjs": "tsc",
"compile:esm": "tsc -p ./tsconfig.esm.json",
"clean": "rm -rf ./themes ./generated",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"lint": "eslint --ext .js,.ts ."
},
"peerDependencies": {
"styled-components": "^5.3.11"
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"change-case": "4.1.2",
"color-layer": "1.0.3",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "9.0.10",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"typescript": "5.3.3"
},
"license": "MIT"
}