-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@focela/theme",
"version": "3.2.0",
"private": true,
"description": "A customizable React theming library for consistent, scalable, and efficient UI design.",
"keywords": [
"react",
"theme",
"theming",
"ui",
"design-system",
"customizable",
"focela",
"theme-provider",
"frontend"
],
"main": "./index.js",
"module": "./theme.esm.js",
"types": "./index.d.ts",
"license": "Focela Internal Use License",
"author": {
"name": "Focela Technologies",
"email": "[email protected]",
"url": "https://www.focela.com"
},
"homepage": "https://opensource.focela.com/theme",
"repository": {
"type": "git",
"url": "https://github.com/focela/theme.git"
},
"bugs": {
"url": "https://github.com/focela/theme/issues",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@focela",
"access": "restricted"
},
"scripts": {
"prebuild": "npm run docs",
"build": "tsdx build --entry ./src/index.ts",
"watch": "tsdx watch --transpileOnly --entry ./src/index.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest --coverage",
"docs": "rimraf typedoc.json && typedoc --tsconfig",
"copy": "cp package.json README.md LICENSE dist",
"release": "npm run build && npm run copy && np --tag latest",
"prettier": "prettier --write ."
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/preset-react": "^7.26.3",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"babel-plugin-optimize-clsx": "^2.6.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"np": "^10.1.0",
"prettier": "^3.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.10",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-copy": "^3.5.0",
"tsdx": "^0.14.1",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typescript": "^5.1.6"
},
"np": {
"branch": "main",
"contents": "./dist",
"message": "chore(release): v%s"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
}
}