-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.71 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
{
"name": "@headboarddev/react",
"version": "0.1.0",
"description": "React SDK for HeadBoard — SDK-first product feedback boards.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/headboarddev/react.git"
},
"homepage": "https://github.com/headboarddev/react#readme",
"bugs": "https://github.com/headboarddev/react/issues",
"keywords": [
"headboard",
"feedback",
"roadmap",
"feature-requests",
"react",
"sdk"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"lint": "eslint src test",
"prepublishOnly": "npm run type-check && npm run test && npm run build"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.38.0",
"eslint-plugin-react-hooks": "^7.0.0",
"jsdom": "^28.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.70.0",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
}
}