-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.21 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.21 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@notifycal/shared",
"version": "7.16.2",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc && tsc-alias && $npm_execpath run build:styles && $npm_execpath run build:assets",
"build:styles": "node style-dictionary/build-tokens.mjs && cp -R src/styles dist/",
"build:assets": "cp -R src/assets dist/",
"lint": "eslint -c ./eslint.config.js",
"lint:fix": "$npm_execpath run lint -- --fix",
"prettier": "prettier . --check",
"prettier:fix": "$npm_execpath run prettier -- --write",
"test": "echo TODO",
"checkCircularDeps": "madge --ts-config tsconfig.json --extensions ts --circular ."
},
"files": [
"dist/**/*",
"src/**/*"
],
"type": "module",
"types": "dist/index.d.ts",
"exports": {
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
},
"./cookies": {
"import": "./dist/cookies/index.js",
"types": "./dist/cookies/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./schemas": {
"import": "./dist/schemas/index.js",
"types": "./dist/schemas/index.d.ts"
},
"./i18n": {
"import": "./dist/i18n/index.js",
"types": "./dist/i18n/index.d.ts"
},
"./components": {
"import": "./dist/components/index.js",
"types": "./dist/components/index.d.ts"
},
"./pricing": {
"import": "./dist/pricing/index.js",
"types": "./dist/pricing/index.d.ts"
},
"./theme": {
"import": "./dist/theme/index.js",
"types": "./dist/theme/index.d.ts"
},
"./styles": "./dist/styles/index.css",
"./styles/*.css": "./dist/styles/*.css",
"./assets/*": "./dist/assets/*"
},
"keywords": [],
"author": "Notifycal",
"repository": {
"type": "git",
"url": "git+https://github.com/Notifycal/shared.git"
},
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@mantine/core": "^8.2.2",
"@tabler/icons-react": "^3.29.0",
"@types/luxon": "^3.4.2",
"@types/node": "^24.0.0",
"@types/react": "^19.1.9",
"@vitest/eslint-plugin": "^1.1.36",
"clsx": "^2.1.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^63.0.0",
"madge": "^8.0.0",
"prettier": "^3.4.2",
"style-dictionary": "^5.0.1",
"tinycolor2": "^1.6.0",
"tsc-alias": "^1.8.10",
"typescript-eslint": "^8.25.0",
"vanilla-cookieconsent": "^3.1.0",
"vite": "^7.0.6"
},
"peerDependencies": {
"luxon": "^3.5.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^4.1.2",
"typescript": "^5.7.3",
"vanilla-cookieconsent": "^3.1.0",
"zod": "4.3.6"
},
"peerDependenciesMeta": {
"@mantine/core": {
"optional": true
},
"@tabler/icons-react": {
"optional": true
},
"clsx": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"tailwindcss": {
"optional": true
},
"vanilla-cookieconsent": {
"optional": true
}
},
"dependencies": {
"radashi": "^12.6.0"
}
}