-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.07 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.07 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
{
"name": "@ciscode/ui-notification-kit",
"version": "0.0.1",
"description": "A React component library for building notification systems.",
"license": "MIT",
"author": "CISCODE",
"repository": {
"type": "git",
"url": "https://github.com/CISCODE-MA/NotificationKit-UI.git"
},
"private": false,
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@eslint/js": "^9.39.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.50.1",
"vitest": "^2.1.8"
},
"scripts": {
"clean": "rimraf dist *.tsbuildinfo",
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier . --check",
"format:write": "prettier . --write",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,json,md,yml,yaml}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.0",
"dependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2"
}
}